10 lines
194 B
Ruby
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
|