aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20251103175210_add_index_to_uuid_on_clients.rb
blob: 1455e79f04b2358546fc3a925d1fe0778bb49e3b (plain)
1
2
3
4
5
class AddIndexToUuidOnClients < ActiveRecord::Migration[8.1]
  def change
    add_index :clients, :uuid, unique: true
  end
end