add index on external id

pull/349/head
Pete Matsyburka 1 year ago
parent 85f8a92721
commit 4552c72860

@ -26,6 +26,7 @@
# Indexes # Indexes
# #
# index_submitters_on_email (email) # index_submitters_on_email (email)
# index_submitters_on_external_id (external_id)
# index_submitters_on_slug (slug) UNIQUE # index_submitters_on_slug (slug) UNIQUE
# index_submitters_on_submission_id (submission_id) # index_submitters_on_submission_id (submission_id)
# #

@ -22,10 +22,11 @@
# #
# Indexes # Indexes
# #
# index_templates_on_account_id (account_id) # index_templates_on_account_id (account_id)
# index_templates_on_author_id (author_id) # index_templates_on_author_id (author_id)
# index_templates_on_folder_id (folder_id) # index_templates_on_external_id (external_id)
# index_templates_on_slug (slug) UNIQUE # index_templates_on_folder_id (folder_id)
# index_templates_on_slug (slug) UNIQUE
# #
# Foreign Keys # Foreign Keys
# #

@ -0,0 +1,8 @@
# frozen_string_literal: true
class AddIndexOnExternalId < ActiveRecord::Migration[7.1]
def change
add_index :submitters, :external_id
add_index :templates, :external_id
end
end

@ -10,7 +10,7 @@
# #
# It's strongly recommended that you check this file into your version control system. # It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.1].define(version: 2024_06_04_070648) do ActiveRecord::Schema[7.1].define(version: 2024_06_24_102526) do
# These are extensions that must be enabled in order to support this database # These are extensions that must be enabled in order to support this database
enable_extension "plpgsql" enable_extension "plpgsql"
@ -200,6 +200,7 @@ ActiveRecord::Schema[7.1].define(version: 2024_06_04_070648) do
t.text "preferences", null: false t.text "preferences", null: false
t.text "metadata", null: false t.text "metadata", null: false
t.index ["email"], name: "index_submitters_on_email" t.index ["email"], name: "index_submitters_on_email"
t.index ["external_id"], name: "index_submitters_on_external_id"
t.index ["slug"], name: "index_submitters_on_slug", unique: true t.index ["slug"], name: "index_submitters_on_slug", unique: true
t.index ["submission_id"], name: "index_submitters_on_submission_id" t.index ["submission_id"], name: "index_submitters_on_submission_id"
end end
@ -242,6 +243,7 @@ ActiveRecord::Schema[7.1].define(version: 2024_06_04_070648) do
t.text "preferences", null: false t.text "preferences", null: false
t.index ["account_id"], name: "index_templates_on_account_id" t.index ["account_id"], name: "index_templates_on_account_id"
t.index ["author_id"], name: "index_templates_on_author_id" t.index ["author_id"], name: "index_templates_on_author_id"
t.index ["external_id"], name: "index_templates_on_external_id"
t.index ["folder_id"], name: "index_templates_on_folder_id" t.index ["folder_id"], name: "index_templates_on_folder_id"
t.index ["slug"], name: "index_templates_on_slug", unique: true t.index ["slug"], name: "index_templates_on_slug", unique: true
end end

Loading…
Cancel
Save