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

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

class CreateAgentGroupAuthorizations < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers

  def change
    create_table :agent_group_authorizations do |t|
      t.bigint :group_id, null: false
      t.bigint :agent_id, null: false
      t.jsonb :config, null: false

      t.index :group_id
      t.index [:agent_id, :group_id], unique: true
    end
  end
end