Add option to subscribe to mailinglist

This commit is contained in:
Gonne 2024-01-03 17:04:38 +01:00
parent 47c546b880
commit d72914da0d
11 changed files with 41 additions and 22 deletions

View file

@ -21,7 +21,8 @@ CREATE TABLE `room` (
CREATE TABLE `tutor` (
`id` INTEGER PRIMARY KEY AUTO_INCREMENT,
`name` tinytext DEFAULT NULL,
`email` tinytext DEFAULT NULL
`email` tinytext DEFAULT NULL,
`subscribeToMailinglist` BOOL DEFAULT false
);
--