Commit e697a141f4d8a8b308a83d6cdc1c010b4afd69e5
Committed by
Gabriel Silva
1 parent
cea3d3b0
Exists in
federation_followers_backend
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" |