demarches-normaliennes/db/migrate/20230109140138_create_email_events.rb

14 lines
316 B
Ruby
Raw Normal View History

2023-01-09 16:02:06 +01:00
class CreateEmailEvents < ActiveRecord::Migration[6.1]
def change
create_table :email_events do |t|
t.string :to, null: false
t.string :method, null: false
t.string :status, null: false
t.string :subject, null: false
t.datetime :processed_at
t.timestamps
end
end
end