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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 16:16:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 16:16:36 +0300
commit311b0269b4eb9839fa63f80c8d7a58f32b8138a0 (patch)
tree07e7870bca8aed6d61fdcc810731c50d2c40af47 /db/migrate/20200607235435_create_cluster_agent_tokens.rb
parent27909cef6c4170ed9205afa7426b8d3de47cbb0c (diff)
Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42
Diffstat (limited to 'db/migrate/20200607235435_create_cluster_agent_tokens.rb')
-rw-r--r--db/migrate/20200607235435_create_cluster_agent_tokens.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/db/migrate/20200607235435_create_cluster_agent_tokens.rb b/db/migrate/20200607235435_create_cluster_agent_tokens.rb
deleted file mode 100644
index 30c3ad30fa5..00000000000
--- a/db/migrate/20200607235435_create_cluster_agent_tokens.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-# 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