mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-12 21:03:37 +01:00
14 lines
290 B
Ruby
14 lines
290 B
Ruby
|
class CreateModerationComments < ActiveRecord::Migration
|
||
|
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
|