|
From: Verdon V. <ve...@us...> - 2008-06-11 17:44:08
|
Update of /cvsroot/phpwebsite-comm/modules/rolodex/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8749/boost Modified Files: boost.php install.sql Log Message: adding locations and features Index: install.sql =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/install.sql,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** install.sql 4 Feb 2008 03:09:15 -0000 1.1.1.1 --- install.sql 11 Jun 2008 17:43:28 -0000 1.2 *************** *** 28,29 **** --- 28,55 ---- CREATE INDEX rolodexmember_idx on rolodex_member(key_id); + CREATE TABLE rolodex_location ( + id int not null default 0, + title varchar(80) not null, + description text, + image_id INT NOT NULL default 0, + PRIMARY KEY (id) + ); + + CREATE TABLE rolodex_feature ( + id int not null default 0, + title varchar(80) not null, + description text, + image_id INT NOT NULL default 0, + PRIMARY KEY (id) + ); + + CREATE TABLE rolodex_loc_items ( + location_id int NOT NULL default 0, + member_id int NOT NULL default 0 + ); + + CREATE TABLE rolodex_fea_items ( + feature_id int NOT NULL default 0, + member_id int NOT NULL default 0 + ); + Index: boost.php =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/rolodex/boost/boost.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** boost.php 4 Feb 2008 03:09:14 -0000 1.1.1.1 --- boost.php 11 Jun 2008 17:43:28 -0000 1.2 *************** *** 24,28 **** $proper_name = 'Rolodex'; ! $version = '0.5.0'; $image_dir = true; $import_sql = true; --- 24,28 ---- $proper_name = 'Rolodex'; ! $version = '0.7.0'; $image_dir = true; $import_sql = true; |