mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:59:50 +08:00
17 lines
433 B
Ruby
17 lines
433 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreatePosts < ActiveRecord::Migration[4.2]
|
|
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 null: false
|
|
end
|
|
|
|
add_index :posts, %i[forum_thread_id created_at]
|
|
end
|
|
end
|