mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-24 09:12:16 +01:00
8 lines
253 B
SQL
8 lines
253 B
SQL
CREATE TABLE `afup_techletter` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`sending_date` datetime NOT NULL,
|
|
`techletter` text,
|
|
`sent_to_mailchimp` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|