Merge branch 'main' into 15814-wb2-secrets
[arvados.git] / services / api / db / migrate / 20240618121312_create_uuid_locks.rb
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: AGPL-3.0
4
5 class CreateUuidLocks < ActiveRecord::Migration[7.0]
6   def change
7     create_table :uuid_locks, id: false do |t|
8       t.string :uuid, null: false, index: {unique: true}
9       t.integer :n, null: false, default: 0
10     end
11   end
12 end