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

11 lines
221 B
Ruby

# -*- encoding : utf-8 -*-
class AddProjectToSubscribe < ActiveRecord::Migration
def self.up
add_column :subscribes, :project_id, :integer
end
def self.down
remove_column :subscribes, :project_id
end
end