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

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