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>2020-06-18 14:18:50 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-18 14:18:50 +0300
commit8c7f4e9d5f36cff46365a7f8c4b9c21578c1e781 (patch)
treea77e7fe7a93de11213032ed4ab1f33a3db51b738 /db/migrate/20180319190020_create_deploy_tokens.rb
parent00b35af3db1abfe813a778f643dad221aad51fca (diff)
Add latest changes from gitlab-org/gitlab@13-1-stable-ee
Diffstat (limited to 'db/migrate/20180319190020_create_deploy_tokens.rb')
-rw-r--r--db/migrate/20180319190020_create_deploy_tokens.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/db/migrate/20180319190020_create_deploy_tokens.rb b/db/migrate/20180319190020_create_deploy_tokens.rb
deleted file mode 100644
index 019543cb2f1..00000000000
--- a/db/migrate/20180319190020_create_deploy_tokens.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-class CreateDeployTokens < ActiveRecord::Migration[4.2]
- DOWNTIME = false
-
- # rubocop:disable Migration/PreventStrings
- def change
- create_table :deploy_tokens do |t|
- t.boolean :revoked, default: false
- t.boolean :read_repository, null: false, default: false
- t.boolean :read_registry, null: false, default: false
-
- t.datetime_with_timezone :expires_at, null: false
- t.datetime_with_timezone :created_at, null: false
-
- t.string :name, null: false
- t.string :token, index: { unique: true }, null: false
-
- t.index [:token, :expires_at, :id], where: "(revoked IS FALSE)"
- end
- end
- # rubocop:enable Migration/PreventStrings
-end