FIX: handle deferred and disagreed post actions
This commit is contained in:
parent
7e5678abd5
commit
c0b6e399d8
|
@ -0,0 +1,11 @@
|
|||
class FixPostActionsIndexAgain < ActiveRecord::Migration
|
||||
def change
|
||||
remove_index "post_actions", name: "idx_unique_actions"
|
||||
add_index "post_actions",
|
||||
["user_id", "post_action_type_id",
|
||||
"post_id", "targets_topic"],
|
||||
name: "idx_unique_actions",
|
||||
unique: true,
|
||||
where: 'deleted_at IS NULL AND disagreed_at IS NULL AND deferred_at IS NULL'
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue