rosa-build/db/migrate/20120124065207_create_activ...

16 lines
276 B
Ruby
Raw Permalink Normal View History

class CreateActivityFeeds < ActiveRecord::Migration
def self.up
create_table :activity_feeds do |t|
2014-01-21 04:51:49 +00:00
t.integer :user_id, null: false
t.string :kind
t.text :data
t.timestamps
end
end
def self.down
drop_table :activity_feeds
end
end