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:
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