2013-02-05 14:16:51 -05:00
|
|
|
class CreateForumThreads < ActiveRecord::Migration
|
|
|
|
def change
|
2013-02-25 11:42:20 -05:00
|
|
|
create_table :forum_threads do |t|
|
2013-02-05 14:16:51 -05:00
|
|
|
t.integer :forum_id, null: false
|
|
|
|
t.string :title, null: false
|
|
|
|
t.integer :last_post_id
|
|
|
|
t.datetime :last_posted_at
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|