aboutsummaryrefslogtreecommitdiff
path: root/db/migrate/20251029131932_add_uuid_to_clients.rb
blob: 954289976ee4691a8b05b0875eff34548a08d4ae (plain)
1
2
3
4
5
class AddUuidToClients < ActiveRecord::Migration[8.1]
  def change
    add_column :clients, :uuid, :uuid, null: false, default: 'gen_random_uuid()'
  end
end