summaryrefslogtreecommitdiff
path: root/db/migrate/036_add_changeset_commit_date.rb
blob: b9cc49b84319c998c9e301bf0897bc925bdd820a (plain)
1
2
3
4
5
6
7
8
9
10
class AddChangesetCommitDate < ActiveRecord::Migration
  def self.up
    add_column :changesets, :commit_date, :date
    Changeset.update_all "commit_date = committed_on"
  end

  def self.down
    remove_column :changesets, :commit_date
  end
end