5 lines
125 B
Ruby
5 lines
125 B
Ruby
class EnablePgStatsExtention < ActiveRecord::Migration[6.0]
|
|
def change
|
|
enable_extension 'pg_stat_statements'
|
|
end
|
|
end
|