summaryrefslogtreecommitdiffstats
path: root/db/migrate/054_add_changesets_scmid.rb
blob: 034facb4bb16a4df77140bd9e9d9c60949d76f75 (plain)
1
2
3
4
5
6
7
8
9
class AddChangesetsScmid < ActiveRecord::Migration[4.2]
  def self.up
    add_column :changesets, :scmid, :string
  end

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