gitlabhq/db/migrate/20110928140106_add_project_id_for_note.rb

10 lines
182 B
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
class AddProjectIdForNote < ActiveRecord::Migration
def up
add_column :notes, :project_id, :integer
end
def down
remove_column :notes, :project_id, :integer
end
end