15 lines
258 B
Ruby
15 lines
258 B
Ruby
|
class CreateActivityFeeds < ActiveRecord::Migration
|
||
|
def self.up
|
||
|
create_table :activity_feeds do |t|
|
||
|
t.integer :user_id, :null => false
|
||
|
t.text :body
|
||
|
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def self.down
|
||
|
drop_table :activity_feeds
|
||
|
end
|
||
|
end
|