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:
authorAmit Rathi <amit@hypertrack.io>2018-11-19 21:32:07 +0300
committerAmit Rathi <amit@hypertrack.io>2018-11-19 21:32:07 +0300
commit2bb757338015672ba642f971653385182cf5e7a7 (patch)
tree98ce8dc5722f70d3445f738c250a89a1967f1be5 /db
parent1c7372ad56cf50b992a77bf0f09bee8fa29c2026 (diff)
Updated schema.rb and remove extra char from install_command
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 0c8b4c4c565..276580e79d8 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -640,6 +640,17 @@ ActiveRecord::Schema.define(version: 20181107054254) do
t.index ["user_id"], name: "index_clusters_on_user_id", using: :btree
end
+ create_table "clusters_applications_cert_managers", force: :cascade do |t|
+ t.integer "cluster_id", null: false
+ t.integer "status", null: false
+ t.string "version", null: false
+ t.string "email", null: false
+ t.datetime_with_timezone "created_at", null: false
+ t.datetime_with_timezone "updated_at", null: false
+ t.text "status_reason"
+ t.index ["cluster_id"], name: "index_clusters_applications_cert_managers_on_cluster_id", using: :btree
+ end
+
create_table "clusters_applications_helm", force: :cascade do |t|
t.integer "cluster_id", null: false
t.datetime_with_timezone "created_at", null: false