mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-24 01:02:15 +01:00
7 lines
180 B
SQL
7 lines
180 B
SQL
CREATE TABLE `tweet` (
|
|
`id` varchar(30) NOT NULL,
|
|
`id_session` int(11) NOT NULL,
|
|
`created_at` datetime NOT NULL,
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|