summaryrefslogtreecommitdiff
path: root/db/migrate/20200607235435_create_cluster_agent_tokens.rb
blob: 30c3ad30fa57e707a43e15490e3054e50fe47c59 (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
# frozen_string_literal: true

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

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    unless table_exists?(:cluster_agent_tokens)
      create_table :cluster_agent_tokens do |t|
        t.timestamps_with_timezone null: false
        t.belongs_to :agent, null: false, index: true, foreign_key: { to_table: :cluster_agents, on_delete: :cascade }
        t.text :token_encrypted, null: false

        t.index :token_encrypted, unique: true
      end
    end

    add_text_limit :cluster_agent_tokens, :token_encrypted, 255
  end

  def down
    drop_table :cluster_agent_tokens
  end
end