From: Gabriel Dunne Date: Fri, 30 Dec 2011 05:38:28 +0000 (-0800) Subject: update sql X-Git-Url: https://git.quilime.com/?a=commitdiff_plain;h=1c121c8245689598c568a71a3f4c2bb176fc634c;p=clmpr.git update sql --- diff --git a/clmpr.sql b/clmpr.sql index 2744270..e4b505f 100644 --- a/clmpr.sql +++ b/clmpr.sql @@ -10,8 +10,10 @@ CREATE TABLE `clumps` ( `description` text NOT NULL, `tags` text NOT NULL, `date` datetime NOT NULL, + `private` tinyint(4) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `date` (`date`), + KEY `private` (`private`), FULLTEXT KEY `tags` (`tags`) ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;