Update of /cvsroot/phpbt/phpbt/schemas
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18132/phpbt/schemas
Modified Files:
mysql.in
Log Message:
Added support to bookmark/monitor a set of bugs
Index: mysql.in
===================================================================
RCS file: /cvsroot/phpbt/phpbt/schemas/mysql.in,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- mysql.in 22 Aug 2005 20:21:42 -0000 1.48
+++ mysql.in 22 Aug 2005 20:30:56 -0000 1.49
@@ -287,6 +287,11 @@
PRIMARY KEY (site_id)
) TYPE=MyISAM;
+CREATE TABLE TBL_BOOKMARK (
+ user_id int(10) unsigned NOT NULL default '0',
+ bug_id int(10) unsigned NOT NULL default '0'
+) TYPE=MyISAM;
+
#
# -- Insert initial data --
#
|