[Netpass-devel] NetPass/install.d tables.sql,1.16,1.17
Brought to you by:
jeffmurphy
From: Matt <mt...@us...> - 2005-07-18 13:23:40
|
Update of /cvsroot/netpass/NetPass/install.d In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32015 Modified Files: tables.sql Log Message: Index: tables.sql =================================================================== RCS file: /cvsroot/netpass/NetPass/install.d/tables.sql,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- tables.sql 2 May 2005 17:06:25 -0000 1.16 +++ tables.sql 18 Jul 2005 13:23:31 -0000 1.17 @@ -121,6 +121,12 @@ PRIMARY KEY (rowid) ) ENGINE=NDBCLUSTER; +CREATE TABLE sideLinks ( + name VARCHAR(24) NOT NULL, + url VARCHAR(255) NOT NULL, + PRIMARY KEY (name) +) ENGINE=NDBCLUSTER; + CREATE INDEX clientHistory_idx1 ON clientHistory (macAddress); CREATE INDEX clientHistory_idx2 ON clientHistory (dt); |