mirror of https://github.com/docusealco/docuseal
parent
46e948ab99
commit
1b636c5878
@ -0,0 +1,8 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class AddUniqueIndexOnCompletedSubmitters < ActiveRecord::Migration[7.2]
|
||||
def change
|
||||
remove_index :completed_submitters, :submitter_id
|
||||
add_index :completed_submitters, :submitter_id, unique: true
|
||||
end
|
||||
end
|
||||
Loading…
Reference in new issue