1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 class AddVersionInfoToCollections < ActiveRecord::Migration[4.2]
7 # Do changes in bulk to save time on huge tables
8 change_table :collections, :bulk => true do |t|
9 t.string :current_version_uuid
10 t.integer :version, null: false, default: 1
11 t.index [:current_version_uuid, :version], unique: true