rosa-build/db/migrate/20120123134616_add_project_...

10 lines
194 B
Ruby

class AddProjectToSubscribe < ActiveRecord::Migration
def self.up
add_column :subscribes, :project_id, :integer
end
def self.down
remove_column :subscribes, :project_id
end
end