mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-24 17:22:06 +01:00
6 lines
200 B
SQL
6 lines
200 B
SQL
CREATE TABLE `afup_techletter_subscriptions` (
|
|
`id` int NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
`user_id` int unsigned NOT NULL,
|
|
`subscription_date` datetime NOT NULL
|
|
) COMMENT='' ENGINE='InnoDB';
|