diff options
author | Stan Hu <stanhu@gmail.com> | 2019-03-29 08:38:42 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-03-29 08:38:42 -0700 |
commit | de644e00c98c0e1a6d8d6697ab799f360791b7ad (patch) | |
tree | 6ccff420fc15d0ca23729a58793e51f484672c77 /db/schema.rb | |
parent | 549f1732e09ee551dab8850fe2722dd9d5d7cd87 (diff) | |
download | gitlab-ce-sh-add-index-extern-uid.tar.gz |
Remove PostgreSQL monkey patchsh-add-index-extern-uid
Rails 5 added support for indexes with expressions, and this
is necessary to update db/schema.rb.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index db085a4aa83..2d8fbdc3405 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1003,6 +1003,7 @@ ActiveRecord::Schema.define(version: 20190328105753) do t.integer "user_id" t.datetime "created_at" t.datetime "updated_at" + t.index "lower((extern_uid)::text), lower((provider)::text)", name: "index_on_identities_lower_extern_uid_and_lower_provider", using: :btree t.index ["user_id"], name: "index_identities_on_user_id", using: :btree end |