summaryrefslogtreecommitdiff
path: root/db/migrate/20170928124105_create_fork_networks.rb
blob: ca906b953a3799b20569ccf3b80bb59182b05bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class CreateForkNetworks < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    create_table :fork_networks do |t|
      t.references :root_project,
                   references: :projects,
                   index: { unique: true }

      t.string :deleted_root_project_name
    end

    add_concurrent_foreign_key :fork_networks, :projects,
                               column: :root_project_id,
                               on_delete: :nullify
  end

  def down
    if foreign_keys_for(:fork_networks, :root_project_id).any?
      remove_foreign_key :fork_networks, column: :root_project_id
    end
    drop_table :fork_networks
  end
end