6 lines
125 B
Ruby
6 lines
125 B
Ruby
|
class EnablePgStatStatements < ActiveRecord::Migration[8.0]
|
||
|
def change
|
||
|
enable_extension 'pg_stat_statements'
|
||
|
end
|
||
|
end
|