Files
fizzy/db/migrate/20250415131630_remove_accounts_name_index.rb
T
David Heinemeier Hansson 7e5f71fedd We will only have one account record per account
Not sure why this was added in the first place.
2025-04-15 15:17:30 +02:00

6 lines
118 B
Ruby

class RemoveAccountsNameIndex < ActiveRecord::Migration[8.1]
def change
remove_index :accounts, :name
end
end