2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
class CreateQueuedPosts < ActiveRecord::Migration[4.2]
|
2015-03-25 14:24:34 -04:00
|
|
|
def change
|
2015-03-26 16:57:50 -04:00
|
|
|
create_table :queued_posts, force: true do |t|
|
2015-03-25 14:24:34 -04:00
|
|
|
t.string :queue, null: false
|
|
|
|
t.integer :state, null: false
|
|
|
|
t.integer :user_id, null: false
|
|
|
|
t.text :raw, null: false
|
2015-03-26 16:57:50 -04:00
|
|
|
t.json :post_options, null: false
|
2015-03-25 14:24:34 -04:00
|
|
|
t.integer :topic_id
|
|
|
|
t.integer :approved_by_id
|
|
|
|
t.timestamp :approved_at
|
|
|
|
t.integer :rejected_by_id
|
|
|
|
t.timestamp :rejected_at
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2015-03-25 14:24:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
add_index :queued_posts, %i[queue state created_at], name: "by_queue_status"
|
2015-03-26 16:57:50 -04:00
|
|
|
add_index :queued_posts, %i[topic_id queue state created_at], name: "by_queue_status_topic"
|
2015-03-25 14:24:34 -04:00
|
|
|
end
|
|
|
|
end
|