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:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-11-29 13:54:35 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2018-12-05 12:53:48 +0300
commit03f4ad4323bed8bc04ad3d93a50e187e6677281e (patch)
treead98b6699a8871f11885c7fd4fe48e1c02fb50b0 /db/migrate/20181129104854_add_token_encrypted_to_ci_builds.rb
parent14db2a42149cc1680762cf6df443677d76dca9ee (diff)
Add encrypted token field to ci_builds table
Diffstat (limited to 'db/migrate/20181129104854_add_token_encrypted_to_ci_builds.rb')
-rw-r--r--db/migrate/20181129104854_add_token_encrypted_to_ci_builds.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20181129104854_add_token_encrypted_to_ci_builds.rb b/db/migrate/20181129104854_add_token_encrypted_to_ci_builds.rb
new file mode 100644
index 00000000000..11b98203793
--- /dev/null
+++ b/db/migrate/20181129104854_add_token_encrypted_to_ci_builds.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+class AddTokenEncryptedToCiBuilds < ActiveRecord::Migration[5.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def change
+ add_column :ci_builds, :token_encrypted, :string
+ end
+end