rosa-build/db/migrate/20111226141947_create_subsc...

15 lines
297 B
Ruby
Raw Permalink Normal View History

class CreateSubscribes < ActiveRecord::Migration
def self.up
create_table :subscribes do |t|
2014-03-14 17:41:49 +00:00
t.integer :subscribeable_id, references: nil
t.string :subscribeable_type
t.integer :user_id
t.timestamps
end
end
def self.down
drop_table :subscribes
end
end