7 строки
191 B
MySQL
7 строки
191 B
MySQL
|
CREATE TABLE `subscription_events` (
|
||
|
`id` integer AUTO_INCREMENT NOT NULL PRIMARY KEY,
|
||
|
`created` datetime NOT NULL,
|
||
|
`modified` datetime NOT NULL,
|
||
|
`post_data` text NOT NULL
|
||
|
);
|