summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorAmit Rathi <amit@hypertrack.io>2018-11-22 01:56:11 +0530
committerAmit Rathi <amit@hypertrack.io>2018-11-22 01:56:11 +0530
commit96c325ebfce71ff9435cedd9e217dc820eca1a35 (patch)
tree1d3d7d142676d383b60b739d6a3e481752d0d84e /db/schema.rb
parentceb867a42be76eb7d8a177ab43711e6ef8ad41cf (diff)
downloadgitlab-ce-96c325ebfce71ff9435cedd9e217dc820eca1a35.tar.gz
unique: true on cluster_id index on cert_manager
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 6b1ab367287..1fdc417b639 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -648,7 +648,7 @@ ActiveRecord::Schema.define(version: 20181112103239) do
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
+ t.index ["cluster_id"], name: "index_clusters_applications_cert_managers_on_cluster_id", unique: true, using: :btree
end
create_table "clusters_applications_helm", force: :cascade do |t|