mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-03 12:27:35 -05:00
12 lines
283 B
Ruby
12 lines
283 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
|