diff --git a/db/migrate/20260819091500_add_submissions_account_template_statistics.rb b/db/migrate/20260819091500_add_submissions_account_template_statistics.rb new file mode 100644 index 00000000..fd6c4948 --- /dev/null +++ b/db/migrate/20260819091500_add_submissions_account_template_statistics.rb @@ -0,0 +1,18 @@ +# frozen_string_literal: true + +class AddSubmissionsAccountTemplateStatistics < ActiveRecord::Migration[8.1] + def up + return unless adapter_name == 'PostgreSQL' + + execute <<~SQL.squish + CREATE STATISTICS IF NOT EXISTS submissions_account_template_stats (dependencies, ndistinct) + ON account_id, template_id FROM submissions + SQL + end + + def down + return unless adapter_name == 'PostgreSQL' + + execute 'DROP STATISTICS IF EXISTS submissions_account_template_stats' + end +end diff --git a/db/schema.rb b/db/schema.rb index 7e7ca23e..f159c4a9 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[8.1].define(version: 2026_07_07_055354) do +ActiveRecord::Schema[8.1].define(version: 2026_08_19_091500) do # These are extensions that must be enabled in order to support this database enable_extension "btree_gin" enable_extension "pg_catalog.plpgsql"