wedding-planner/db/migrate/20250122202836_enable_pg_stat_statements.rb

8 lines
163 B
Ruby
Raw Normal View History

2025-01-23 20:59:31 +00:00
# Copyright (C) 2024 Manuel Bustillo
2025-01-22 21:29:13 +01:00
class EnablePgStatStatements < ActiveRecord::Migration[8.0]
def change
enable_extension 'pg_stat_statements'
end
end