diff options
author | Shinya Maeda <shinya@gitlab.com> | 2017-09-28 18:11:17 +0900 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2017-09-28 18:11:17 +0900 |
commit | fabc359e77c39aea86f0eaa9f19b17b2a609dd99 (patch) | |
tree | e252491c27bd2ac6a2606cb7f89ac33ab1fa0254 /db | |
parent | 058e595788118fb129d3003989a3728de9ae7e39 (diff) | |
download | gitlab-ce-fabc359e77c39aea86f0eaa9f19b17b2a609dd99.tar.gz |
Multithreading cluster creation is done with `reactive_cache`
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20170924094327_create_ci_clusters.rb | 1 | ||||
-rw-r--r-- | db/schema.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/db/migrate/20170924094327_create_ci_clusters.rb b/db/migrate/20170924094327_create_ci_clusters.rb index c919c5da2c4..33a67be46dc 100644 --- a/db/migrate/20170924094327_create_ci_clusters.rb +++ b/db/migrate/20170924094327_create_ci_clusters.rb @@ -24,6 +24,7 @@ class CreateCiClusters < ActiveRecord::Migration t.string :gcp_project_id t.string :cluster_zone t.string :cluster_name + t.string :gcp_operation_id t.datetime_with_timezone :created_at, null: false t.datetime_with_timezone :updated_at, null: false diff --git a/db/schema.rb b/db/schema.rb index 3908f06821e..0ebce995cfd 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -281,6 +281,7 @@ ActiveRecord::Schema.define(version: 20170924094327) do t.string "gcp_project_id" t.string "cluster_zone" t.string "cluster_name" + t.string "gcp_operation_id" t.datetime "created_at", null: false t.datetime "updated_at", null: false end |