diff options
author | Amit Rathi <amit@hypertrack.io> | 2018-11-20 00:02:07 +0530 |
---|---|---|
committer | Amit Rathi <amit@hypertrack.io> | 2018-11-20 00:02:07 +0530 |
commit | 2bb757338015672ba642f971653385182cf5e7a7 (patch) | |
tree | 98ce8dc5722f70d3445f738c250a89a1967f1be5 /db | |
parent | 1c7372ad56cf50b992a77bf0f09bee8fa29c2026 (diff) | |
download | gitlab-ce-2bb757338015672ba642f971653385182cf5e7a7.tar.gz |
Updated schema.rb and remove extra char from install_command
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.rb | 11 |
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 |