From: Alan Knowles Date: Tue, 16 Dec 2014 11:00:02 +0000 (+0800) Subject: Pman/Reddit/DataObjects/reddit.sql X-Git-Url: http://git.roojs.org/?p=web.Reddit;a=commitdiff_plain;h=4259debcf2e0985efd75683f9b060048fb9572bf Pman/Reddit/DataObjects/reddit.sql --- diff --git a/Pman/Reddit/DataObjects/reddit.sql b/Pman/Reddit/DataObjects/reddit.sql index 450e2ea20..d4a155888 100644 --- a/Pman/Reddit/DataObjects/reddit.sql +++ b/Pman/Reddit/DataObjects/reddit.sql @@ -16,17 +16,14 @@ alter table reddit_livefeed add column last_uid varchar(64) not null default ''; -CREATE TABLE reddit_livefeed_embed -( - id INT(11) NOT NULL auto_increment, - feed_id INT(11), - seqid INT(11), - url TEXT, - frame_width INT(11), - frame_height INT(11), - frame_style TEXT, - frame_body LONGTEXT, - - PRIMARY KEY (id) - -); \ No newline at end of file + CREATE TABLE `reddit_livefeed_embed` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `feed_id` int(11) NOT NULL DEFAULT '0', + `seqid` int(11) NOT NULL DEFAULT '0', + `url` text, + `frame_width` int(11) NOT NULL DEFAULT '0', + `frame_height` int(11) NOT NULL DEFAULT '0', + `frame_style` text, + `frame_body` longtext, + PRIMARY KEY (`id`) +) \ No newline at end of file