summaryrefslogtreecommitdiff
path: root/db/migrate/20181019032408_add_repositories_table.rb
blob: 077f264d3cec7c0d52d6e4820229a8eae7950e46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class AddRepositoriesTable < ActiveRecord::Migration
  DOWNTIME = false

  def change
    create_table :repositories, id: :bigserial do |t|
      t.references :shard, null: false, index: true, foreign_key: { on_delete: :restrict }
      t.string :disk_path, null: false, index: { unique: true }
    end

    add_column :projects, :pool_repository_id, :bigint
    add_index :projects, :pool_repository_id, where: 'pool_repository_id IS NOT NULL'
  end
end