diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-11-06 20:46:05 +0100 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-11-06 20:46:05 +0100 |
commit | 46cac8510bd0da97e5b153db2da734089b994de4 (patch) | |
tree | 7a72a292760fc2f20c22d400707ad675ae5fc003 /db/schema.rb | |
parent | 39dd1c66dd349146ae75070b1ea15d3539a4b2a8 (diff) | |
download | gitlab-ce-46cac8510bd0da97e5b153db2da734089b994de4.tar.gz |
Fix db/schema.rb
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 11 |
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 |