retrospring/db/migrate/20141227130618_create_moderation_comments.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
325 B
Ruby
Raw Normal View History

2023-10-20 01:37:34 +02:00
# frozen_string_literal: true
class CreateModerationComments < ActiveRecord::Migration[4.2]
2014-12-27 14:35:09 +01:00
def change
create_table :moderation_comments do |t|
t.integer :report_id
t.integer :user_id
t.string :content
t.timestamps
end
2023-10-20 01:37:34 +02:00
add_index :moderation_comments, %i[user_id created_at]
2014-12-27 14:35:09 +01:00
end
end