mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
15 lines
392 B
Ruby
15 lines
392 B
Ruby
|
class CreatePosts < ActiveRecord::Migration
|
||
|
def change
|
||
|
create_table :posts do |t|
|
||
|
t.integer :user_id, null: false
|
||
|
t.integer :forum_thread_id, null: false
|
||
|
t.integer :post_number, null: false
|
||
|
t.text :content, null: false
|
||
|
t.text :formatted_content, null: false
|
||
|
t.timestamps
|
||
|
end
|
||
|
|
||
|
add_index :posts, [:forum_thread_id, :created_at]
|
||
|
end
|
||
|
end
|