2012-02-29 01:30:22 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2012-01-23 19:42:54 +00:00
|
|
|
class AddProjectToSubscribe < ActiveRecord::Migration
|
|
|
|
def self.up
|
|
|
|
add_column :subscribes, :project_id, :integer
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
remove_column :subscribes, :project_id
|
|
|
|
end
|
|
|
|
end
|