1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 class CreateUuidLocks < ActiveRecord::Migration[7.0]
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