mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-21 22:26:22 +00:00
d1a87177a5
en realidad lo queremos mantener...
8 lines
262 B
Ruby
8 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
|