Chatwoot/db/migrate/20210105185632_enable_pg_stats_extention.rb

6 lines
125 B
Ruby
Raw Normal View History

class EnablePgStatsExtention < ActiveRecord::Migration[6.0]
def change
enable_extension 'pg_stat_statements'
end
end