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
path: root/db
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2017-11-06 22:46:05 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2017-11-06 22:46:05 +0300
commit46cac8510bd0da97e5b153db2da734089b994de4 (patch)
tree7a72a292760fc2f20c22d400707ad675ae5fc003 /db
parent39dd1c66dd349146ae75070b1ea15d3539a4b2a8 (diff)
Fix db/schema.rb
Diffstat (limited to 'db')
-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