Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20181014203236_create_cluster_groups.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33ae9a4a478af883e2047d0786687689f660dcad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class CreateClusterGroups < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    create_table :cluster_groups do |t|
      t.references :cluster, null: false, foreign_key: { on_delete: :cascade }
      t.references :group, null: false, index: true

      t.index [:cluster_id, :group_id], unique: true
      t.foreign_key :namespaces, column: :group_id, on_delete: :cascade
    end
  end
end