mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
11 lines
277 B
Ruby
11 lines
277 B
Ruby
class CreateForumThreads < ActiveRecord::Migration
|
|
def change
|
|
create_table :forum_threads do |t|
|
|
t.integer :forum_id, null: false
|
|
t.string :title, null: false
|
|
t.integer :last_post_id
|
|
t.datetime :last_posted_at
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|