Skip to content

Commit

Permalink
Add migration to track in progress reminders that have been sent (#12348
Browse files Browse the repository at this point in the history
)
  • Loading branch information
nathanbwright authored Apr 10, 2023
1 parent b0cf400 commit 0c48aa0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
9 changes: 8 additions & 1 deletion db/schema.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class CreateInProgressRemindersSent < ActiveRecord::Migration[6.1]
def change
create_table :va_notify_in_progress_reminders_sent do |t|
t.string :form_id, null: false
t.string :user_uuid, null: false

t.timestamps
end
end
end

0 comments on commit 0c48aa0

Please sign in to comment.