1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 class CreateCommitAncestors < ActiveRecord::Migration[4.2]
7 create_table :commit_ancestors do |t|
8 t.string :repository_name
9 t.string :descendant, :null => false
10 t.string :ancestor, :null => false
11 t.boolean :is, :default => false, :null => false
15 add_index :commit_ancestors, [:descendant, :ancestor], :unique => true