Add email checking with validation event saving

This commit is contained in:
Alex Sherman 2021-06-29 16:13:40 +05:00
parent d4fe961e34
commit c344b91d84
4 changed files with 65 additions and 4 deletions

View file

@ -7,7 +7,7 @@ class CreateValidationEvents < ActiveRecord::Migration[6.1]
create_table :validation_events do |t|
t.jsonb :event_data
t.boolean :result
t.boolean :success
t.references :validation_eventable, polymorphic: true
t.timestamps