diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-11-01 12:57:05 +0100 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2017-11-01 13:57:32 +0100 |
commit | ccf09824f6d3ef41db4be3b40aa99b6dfd0dc9ac (patch) | |
tree | dd75a954bf30f49859c670834f13e0aac4f2d4ca /db/schema.rb | |
parent | 0c417ef0435ca49dba451a7270235f775d1d9a75 (diff) | |
download | gitlab-ce-ccf09824f6d3ef41db4be3b40aa99b6dfd0dc9ac.tar.gz |
Slim down Platforms::Kubernetes, and instead make it instrument KubernetesService
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 4 |
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 |