mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
400 B
11 lines
400 B
# frozen_string_literal: true
|
|
|
|
class AddSubmissionsTemplateIndex < ActiveRecord::Migration[8.0]
|
|
def change
|
|
add_index :submissions, %i[account_id template_id id], where: 'archived_at IS NULL'
|
|
add_index :submissions, %i[account_id template_id id],
|
|
where: 'archived_at IS NOT NULL',
|
|
name: 'index_submissions_on_account_id_and_template_id_and_id_archived'
|
|
end
|
|
end
|