retrospring/db/migrate/20141227130545_create_moderation_votes.rb

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

18 lines
475 B
Ruby
Raw Normal View History

2023-10-20 01:37:34 +02:00
# frozen_string_literal: true
class CreateModerationVotes < ActiveRecord::Migration[4.2]
2014-12-27 14:35:09 +01: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
2023-10-20 01:37:34 +02:00
add_index :moderation_votes, %i[user_id report_id], unique: true
2014-12-27 14:35:09 +01:00
end
end