summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Eastwood <contact@ericeastwood.com>2017-11-06 13:50:31 -0600
committerEric Eastwood <contact@ericeastwood.com>2017-11-06 13:50:31 -0600
commit8332c2b7688e52b41c78bfc3312adb2e9bb0315a (patch)
treeafce5817939731978d5bc1b410baf56cf7facdee
parent4e07fd71a34bc8003668b7c387f4c46e9e6640d4 (diff)
parent46cac8510bd0da97e5b153db2da734089b994de4 (diff)
downloadgitlab-ce-8332c2b7688e52b41c78bfc3312adb2e9bb0315a.tar.gz
Merge branch 'add-ingress-to-cluster-applications' of gitlab.com:gitlab-org/gitlab-ce into add-ingress-to-cluster-applications
-rw-r--r--db/schema.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index d2019e93475..9e07114a2d1 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -464,7 +464,9 @@ ActiveRecord::Schema.define(version: 20171106101200) do
create_table "cluster_platforms_kubernetes", force: :cascade do |t|
t.integer "cluster_id", null: false
- t.string "api_url"
+ t.datetime_with_timezone "created_at", null: false
+ t.datetime_with_timezone "updated_at", null: false
+ t.text "api_url"
t.text "ca_cert"
t.string "namespace"
t.string "username"
@@ -489,6 +491,9 @@ ActiveRecord::Schema.define(version: 20171106101200) do
create_table "cluster_providers_gcp", force: :cascade do |t|
t.integer "cluster_id", null: false
t.integer "status"
+ t.integer "num_nodes", null: false
+ t.datetime_with_timezone "created_at", null: false
+ t.datetime_with_timezone "updated_at", null: false
t.text "status_reason"
t.string "gcp_project_id", null: false
t.string "zone", null: false
@@ -503,6 +508,10 @@ ActiveRecord::Schema.define(version: 20171106101200) do
create_table "clusters", force: :cascade do |t|
t.integer "user_id"
+ t.integer "provider_type"
+ t.integer "platform_type"
+ t.datetime_with_timezone "created_at", null: false
+ t.datetime_with_timezone "updated_at", null: false
t.boolean "enabled", default: true
t.string "name", null: false
end