who let this past qa

This commit is contained in:
Andrew Brown 2019-09-07 21:20:39 -05:00
parent 40f9d59ee3
commit cdbf9130ba
2 changed files with 1 additions and 6 deletions

View File

@ -8,9 +8,5 @@ class AddDocumentAnalysisIndices < ActiveRecord::Migration[5.2]
add_index :attributes, [:user_id, :deleted_at]
add_index :attributes, [:attribute_field_id, :user_id, :entity_type, :entity_id, :deleted_at], name: :attributes_afi_ui_et_ei_da
add_index :motherships, [:mother_id, :character_id, :deleted_at]
add_index :fatherships, [:father_id, :character_id, :deleted_at]
#todo honestly we should probably do indices for all these triplet pairs (for each grouper)
end
end

View File

@ -874,7 +874,6 @@ ActiveRecord::Schema.define(version: 2019_09_08_015515) do
t.integer "father_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["father_id", "character_id", nil], name: "index_fatherships_on_father_id_and_character_id_and_deleted_at"
end
create_table "flora_eaten_bies", force: :cascade do |t|
@ -1513,7 +1512,6 @@ ActiveRecord::Schema.define(version: 2019_09_08_015515) do
t.integer "mother_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["mother_id", "character_id", nil], name: "index_motherships_on_mother_id_and_character_id_and_deleted_at"
end
create_table "notable_cities_relationships", force: :cascade do |t|
@ -2566,6 +2564,7 @@ ActiveRecord::Schema.define(version: 2019_09_08_015515) do
t.string "interests"
t.string "forums_badge_text"
t.boolean "keyboard_shortcuts_preference"
t.date "birthday"
t.index ["deleted_at", "username"], name: "index_users_on_deleted_at_and_username"
t.index ["deleted_at"], name: "index_users_on_deleted_at"
t.index ["email"], name: "index_users_on_email", unique: true