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

class AddRepositoriesTable < ActiveRecord::Migration[4.2]
  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 } # rubocop:disable Migration/AddLimitToStringColumns
    end

    add_column :projects, :pool_repository_id, :bigint # rubocop:disable Migration/AddColumnsToWideTables
    add_index :projects, :pool_repository_id, where: 'pool_repository_id IS NOT NULL'
  end
end