Commit 6cf6ab7e8545c45fd16845758b0c263b58a2ad92
1 parent
160be2a2
Exists in
oauth_external_login
and in
1 other branch
fix index name for external_environments table
Showing
1 changed file
with
3 additions
and
0 deletions
Show diff stats
db/schema.rb
@@ -375,6 +375,9 @@ ActiveRecord::Schema.define(version: 20160422163123) do | @@ -375,6 +375,9 @@ ActiveRecord::Schema.define(version: 20160422163123) do | ||
375 | t.integer "external_environment_id" | 375 | t.integer "external_environment_id" |
376 | end | 376 | end |
377 | 377 | ||
378 | + add_index "environment_external_environments", ["environment_id"], name: "index_environment_external_environments_on_environment_id", using: :btree | ||
379 | + add_index "environment_external_environments", ["external_environment_id"], name: "index_environment_external_environments_on_external_environment_id", using: :btree | ||
380 | + | ||
378 | create_table "environments", force: :cascade do |t| | 381 | create_table "environments", force: :cascade do |t| |
379 | t.string "name" | 382 | t.string "name" |
380 | t.string "contact_email" | 383 | t.string "contact_email" |