mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-24 17:22:06 +01:00
9 lines
389 B
SQL
9 lines
389 B
SQL
CREATE TABLE `afup_techletter_unsubscriptions` (
|
|
`id` int NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
`email` varchar(255) NOT NULL,
|
|
`unsubscription_date` datetime NOT NULL,
|
|
`reason` varchar(255) DEFAULT NULL,
|
|
`mailchimp_id` varchar(255) DEFAULT NULL
|
|
) COMMENT='' ENGINE='InnoDB';
|
|
alter table `afup_techletter_unsubscriptions` convert to character set latin1 collate latin1_general_ci;
|