Files
afup/sql/20160114_precense-flag-event.sql
2016-05-23 17:44:43 +02:00

11 lines
376 B
SQL

-- STORY
-- As the account manager
-- I want to know who came at the events
-- So that I can send "presence confirmation" emails when asked.
-- Add `presence` columns in the registrations table
ALTER TABLE `afup_inscription_forum`
ADD `presence_day1` TINYINT(1) NULL DEFAULT NULL;
ALTER TABLE `afup_inscription_forum`
ADD `presence_day2` TINYINT(1) NULL DEFAULT NULL;