retrospring/db/migrate/20141227130618_create_moderation_comments.rb
2020-04-19 18:10:31 +02:00

13 lines
295 B
Ruby

class CreateModerationComments < ActiveRecord::Migration[4.2]
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