diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2018-01-25 14:31:27 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2018-01-25 14:31:27 +0100 |
commit | 4e4ee368c9c02fcd52a1173df4e8ca882c644dba (patch) | |
tree | 8930d7bfa9a7625592a56252be2ab71d0307912d /db | |
parent | 9b73f14d07233af78512a93f9b8eadd696cd6fd1 (diff) | |
download | gitlab-ce-4e4ee368c9c02fcd52a1173df4e8ca882c644dba.tar.gz |
Remove unique index not added in a migration from schema
Diffstat (limited to 'db')
-rw-r--r-- | db/schema.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index d0802bed8f7..97cbbd111c8 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -451,7 +451,6 @@ ActiveRecord::Schema.define(version: 20180125111139) do end add_index "ci_stages", ["pipeline_id", "name"], name: "index_ci_stages_on_pipeline_id_and_name", unique: true, using: :btree - add_index "ci_stages", ["pipeline_id", "name"], name: "index_ci_stages_on_pipeline_id_and_name_unique", unique: true, using: :btree add_index "ci_stages", ["pipeline_id"], name: "index_ci_stages_on_pipeline_id", using: :btree add_index "ci_stages", ["project_id"], name: "index_ci_stages_on_project_id", using: :btree |