enable pg_stats

This commit is contained in:
Graham McIntire 2025-07-07 16:45:48 -05:00
parent 9a6f649157
commit 58d940435e
No known key found for this signature in database

View file

@ -0,0 +1,7 @@
defmodule Aprsme.Repo.Migrations.EnablePgStatStatements do
use Ecto.Migration
def change do
execute "CREATE EXTENSION IF NOT EXISTS pg_stat_statements"
end
end