2020-04-19 09:10:31 -07:00
|
|
|
class CreateModerationComments < ActiveRecord::Migration[4.2]
|
2014-12-27 05:35:09 -08:00
|
|
|
def change
|
|
|
|
create_table :moderation_comments do |t|
|
|
|
|
t.integer :report_id
|
|
|
|
t.integer :user_id
|
|
|
|
t.string :content
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index :moderation_comments, [:user_id, :created_at]
|
|
|
|
end
|
|
|
|
end
|