mirror of https://github.com/docusealco/docuseal
parent
f85fd3cff7
commit
c1aac6b763
@ -0,0 +1,18 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class AddSubmissionsAccountTemplateStatistics < ActiveRecord::Migration[8.1]
|
||||
def up
|
||||
return unless adapter_name == 'PostgreSQL'
|
||||
|
||||
execute <<~SQL.squish
|
||||
CREATE STATISTICS IF NOT EXISTS submissions_account_template_stats (dependencies, ndistinct)
|
||||
ON account_id, template_id FROM submissions
|
||||
SQL
|
||||
end
|
||||
|
||||
def down
|
||||
return unless adapter_name == 'PostgreSQL'
|
||||
|
||||
execute 'DROP STATISTICS IF EXISTS submissions_account_template_stats'
|
||||
end
|
||||
end
|
||||
Loading…
Reference in new issue