discourse/db/migrate/20120311163914_create_forum...

12 lines
294 B
Ruby
Raw Normal View History

class CreateForumThreads < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
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