2020-04-19 09:10:31 -07:00
|
|
|
class CreateModerationVotes < ActiveRecord::Migration[4.2]
|
2014-12-27 05:35:09 -08:00
|
|
|
def change
|
|
|
|
create_table :moderation_votes do |t|
|
|
|
|
t.integer :report_id, null: false
|
|
|
|
t.integer :user_id, null: false
|
|
|
|
t.boolean :upvote, null: false, default: false
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
|
|
|
add_index :moderation_votes, :user_id
|
|
|
|
add_index :moderation_votes, :report_id
|
|
|
|
add_index :moderation_votes, [:user_id, :report_id], unique: true
|
|
|
|
end
|
|
|
|
end
|