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-01 14:57:05 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2017-11-01 15:57:32 +0300
commitccf09824f6d3ef41db4be3b40aa99b6dfd0dc9ac (patch)
treedd75a954bf30f49859c670834f13e0aac4f2d4ca /db
parent0c417ef0435ca49dba451a7270235f775d1d9a75 (diff)
Slim down Platforms::Kubernetes, and instead make it instrument KubernetesService
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb
index adf8b9594fb..24f2d4b439c 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -481,8 +481,8 @@ ActiveRecord::Schema.define(version: 20171017145932) do
create_table "cluster_projects", force: :cascade do |t|
t.integer "project_id", null: false
t.integer "cluster_id", null: false
- t.datetime "created_at", null: false
- t.datetime "updated_at", null: false
+ t.datetime_with_timezone "created_at", null: false
+ t.datetime_with_timezone "updated_at", null: false
end
add_index "cluster_projects", ["cluster_id"], name: "index_cluster_projects_on_cluster_id", using: :btree