mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:47:22 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
23 lines
750 B
Ruby
23 lines
750 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateQueuedPosts < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :queued_posts, force: true do |t|
|
|
t.string :queue, null: false
|
|
t.integer :state, null: false
|
|
t.integer :user_id, null: false
|
|
t.text :raw, null: false
|
|
t.json :post_options, null: false
|
|
t.integer :topic_id
|
|
t.integer :approved_by_id
|
|
t.timestamp :approved_at
|
|
t.integer :rejected_by_id
|
|
t.timestamp :rejected_at
|
|
t.timestamps null: false
|
|
end
|
|
|
|
add_index :queued_posts, [:queue, :state, :created_at], name: 'by_queue_status'
|
|
add_index :queued_posts, [:topic_id, :queue, :state, :created_at], name: 'by_queue_status_topic'
|
|
end
|
|
end
|