mirror of
https://github.com/jsbin/jsbin.git
synced 2026-01-18 15:18:04 +00:00
22 lines
638 B
SQL
22 lines
638 B
SQL
CREATE TABLE IF NOT EXISTS `sandbox` (
|
|
`id` int(11) NOT NULL auto_increment,
|
|
`javascript` text,
|
|
`html` text,
|
|
`created` datetime default NULL,
|
|
`last_viewed` datetime default NULL,
|
|
`url` char(255) default NULL,
|
|
`streaming` char(1) default 'n',
|
|
`streaming_key` char(32) NOT NULL,
|
|
`streaming_read_key` char(32) NOT NULL,
|
|
`active_tab` varchar(10) NOT NULL,
|
|
`active_cursor` int(11) NOT NULL,
|
|
|
|
`revision` int(11) default 1,
|
|
|
|
PRIMARY KEY (`id`),
|
|
KEY `viewed` (`last_viewed`),
|
|
KEY `url` (`url`),
|
|
KEY `streaming_key` (`streaming_key`),
|
|
KEY `spam` (`created`,`last_viewed`),
|
|
KEY `revision` (`url`, `revision`)
|
|
); |