3c4f3331d8
Jenkins Production Deployment
Reviewed-on: #8 Co-authored-by: Patrick Mueller <patrick@mueller-patrick.tech> Co-committed-by: Patrick Mueller <patrick@mueller-patrick.tech>
8 lines
441 B
SQL
8 lines
441 B
SQL
-- Nachklang e.V. Tickets module — adds a per-event "address required" flag,
|
|
-- distinct from collect_address (which only controls whether the field is
|
|
-- shown/collected at all). Apply manually against TICKETS_DB, after
|
|
-- 001_init.sql:
|
|
-- mysql -h <DB_HOST> -u <DB_USER> -p <TICKETS_DB> < 002_add_require_address.sql
|
|
ALTER TABLE event_ticket_settings
|
|
ADD COLUMN require_address TINYINT(1) NOT NULL DEFAULT 0 AFTER collect_address;
|