summaryrefslogtreecommitdiff
path: root/db/migrate/20170924094327_create_gcp_clusters.rb
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2017-10-03 23:44:06 +0900
committerShinya Maeda <shinya@gitlab.com>2017-10-03 23:44:06 +0900
commit6b7889f750c56962c0674467c3fbfd7976b9b44f (patch)
tree1491f42c332465194630417afc138010e23fc163 /db/migrate/20170924094327_create_gcp_clusters.rb
parentfd6776214abb2603ce2fb5dfb078229f0a0195e5 (diff)
downloadgitlab-ce-6b7889f750c56962c0674467c3fbfd7976b9b44f.tar.gz
Implement Policy. Use show instead of edit. Chnage db column. fix comments. dry up workers
Diffstat (limited to 'db/migrate/20170924094327_create_gcp_clusters.rb')
-rw-r--r--db/migrate/20170924094327_create_gcp_clusters.rb11
1 files changed, 4 insertions, 7 deletions
diff --git a/db/migrate/20170924094327_create_gcp_clusters.rb b/db/migrate/20170924094327_create_gcp_clusters.rb
index 9aa8e537dbe..032db09e748 100644
--- a/db/migrate/20170924094327_create_gcp_clusters.rb
+++ b/db/migrate/20170924094327_create_gcp_clusters.rb
@@ -19,22 +19,19 @@ class CreateGcpClusters < ActiveRecord::Migration
t.string :endpoint
t.text :ca_cert
t.string :encrypted_kubernetes_token
- t.string :encrypted_kubernetes_token_salt
t.string :encrypted_kubernetes_token_iv
t.string :username
t.string :encrypted_password
- t.string :encrypted_password_salt
t.string :encrypted_password_iv
# GKE
t.string :gcp_project_id, null: false
- t.string :cluster_zone, null: false
- t.string :cluster_name, null: false
- t.integer :cluster_size, null: false
- t.string :machine_type
+ t.string :gcp_cluster_zone, null: false
+ t.string :gcp_cluster_name, null: false
+ t.integer :gcp_cluster_size, null: false
+ t.string :gcp_machine_type
t.string :gcp_operation_id
t.string :encrypted_gcp_token
- t.string :encrypted_gcp_token_salt
t.string :encrypted_gcp_token_iv
t.datetime_with_timezone :created_at, null: false