-- Nachklang e.V. Tickets module — adds a per-event "tickets are mailed" flag. -- Defaults to 0 (not mailed) because no event mails physical tickets today - -- the redemption confirmation email uses this to decide whether to tell the -- guest their tickets await pickup at the Abendkasse instead. Apply manually -- against TICKETS_DB, after 003_add_confirmation_email_status.sql: -- mysql -h -u -p < 004_add_tickets_mailed.sql ALTER TABLE event_ticket_settings ADD COLUMN tickets_mailed TINYINT(1) NOT NULL DEFAULT 0 AFTER require_address;