????

Your IP : 18.219.40.177


Current Path : C:/inetpub/vhost/redmine.gdtvietnam.com/db/migrate/
Upload File :
Current File : C:/inetpub/vhost/redmine.gdtvietnam.com/db/migrate/036_add_changeset_commit_date.rb

class AddChangesetCommitDate < ActiveRecord::Migration[4.2]
  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