discourse/db/migrate/20120816050526_add_unique_constraint_to_user_actions.rb

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

11 lines
311 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddUniqueConstraintToUserActions < ActiveRecord::Migration[4.2]
2013-02-05 13:16:51 -06:00
def change
add_index :user_actions,
%w[action_type user_id target_forum_thread_id target_post_id acting_user_id],
name: "idx_unique_rows",
unique: true
end
end