From: Eloi G. <ada...@us...> - 2011-01-03 06:02:15
|
Update of /cvsroot/phpwebsite-comm/modules/article/boost In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv13381/boost Modified Files: install.sql Log Message: + Times viewed is now stored in the associated Key for an article Index: install.sql =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/boost/install.sql,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** install.sql 21 Aug 2008 20:17:29 -0000 1.15 --- install.sql 3 Jan 2011 06:02:06 -0000 1.16 *************** *** 13,17 **** summary text NOT NULL, allow_comments smallint NOT NULL DEFAULT '0', - hits int NOT NULL DEFAULT '0', expiration_date int NOT NULL, publication_date int NOT NULL, --- 13,16 ---- *************** *** 35,39 **** PRIMARY KEY (id) ); - CREATE INDEX hits_idx on article(hits); CREATE INDEX expiration_date_idx on article(expiration_date); CREATE INDEX updated_date_idx on article(updated_date); --- 34,37 ---- |