add completed submitters verification method

This commit is contained in:
Pete Matsyburka
2025-09-01 14:09:00 +03:00
parent 1e9a181e60
commit f6850b5427
4 changed files with 28 additions and 12 deletions
@@ -0,0 +1,7 @@
# frozen_string_literal: true
class AddVerificationMethodToCompletedSubmitters < ActiveRecord::Migration[8.0]
def change
add_column :completed_submitters, :verification_method, :string
end
end