demarches-normaliennes/db/migrate/20231103084116_add_expired_notification_sent_at_to_users.rb

6 lines
202 B
Ruby

class AddExpiredNotificationSentAtToUsers < ActiveRecord::Migration[7.0]
def change
add_column :users, :inactive_close_to_expiration_notice_sent_at, :datetime, precision: 6, null: true
end
end