socialforge/db/migrate/054_add_changesets_scmid.rb

10 lines
180 B
Ruby
Raw Normal View History

2013-08-01 10:33:49 +08:00
class AddChangesetsScmid < ActiveRecord::Migration
def self.up
add_column :changesets, :scmid, :string
end
def self.down
remove_column :changesets, :scmid
end
end