449edd6c68
Jenkins Production Deployment
Reviewed-on: #9 Co-authored-by: Patrick Müller <patrick@mueller-patrick.tech> Co-committed-by: Patrick Müller <patrick@mueller-patrick.tech>
8 lines
517 B
SQL
8 lines
517 B
SQL
-- Nachklang e.V. Tickets module — records the outcome of the redemption
|
|
-- confirmation email on the redemption itself, so the admin UI can flag a
|
|
-- failed send and offer a resend. NULL until the post-commit send resolves.
|
|
-- Apply manually against TICKETS_DB, after 002_add_require_address.sql:
|
|
-- mysql -h <DB_HOST> -u <DB_USER> -p <TICKETS_DB> < 003_add_confirmation_email_status.sql
|
|
ALTER TABLE redemptions
|
|
ADD COLUMN confirmation_email_status ENUM('SENT','FAILED') NULL DEFAULT NULL AFTER redeemed_at;
|