mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 17:06:22 +00:00
9 lines
262 B
Ruby
9 lines
262 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
# A veces tenemos varias acciones sobre el mismo objeto
|
||
|
class RemoveUniqueIndexFromActivityPubs < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
remove_index :activity_pubs, %i[site_id object_id object_type], unique: true
|
||
|
end
|
||
|
end
|