summaryrefslogtreecommitdiff
path: root/db/migrate/20201012194936_create_saml_group_links.rb
blob: d47c383afef129b3f086d7c98f3d962f1f28a9e5 (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
29
30
# frozen_string_literal: true

class CreateSamlGroupLinks < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    with_lock_retries do
      create_table :saml_group_links, if_not_exists: true do |t|
        t.integer :access_level, null: false, limit: 2
        t.references :group, index: false, foreign_key: { to_table: :namespaces, on_delete: :cascade }, null: false
        t.timestamps_with_timezone
        t.text :saml_group_name, null: false

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

    add_text_limit :saml_group_links, :saml_group_name, 255
  end

  def down
    with_lock_retries do
      drop_table :saml_group_links
    end
  end
end