hholzgra                Thu Oct 23 03:15:52 2003 EDT

  Modified files:              
    /functable  dbmodel.sql 
  Log:
  add php 5 protos
  
Index: functable/dbmodel.sql
diff -u functable/dbmodel.sql:1.6 functable/dbmodel.sql:1.7
--- functable/dbmodel.sql:1.6   Fri Jul 19 19:50:36 2002
+++ functable/dbmodel.sql       Thu Oct 23 03:15:52 2003
@@ -10,10 +10,9 @@
 
 DROP TABLE IF EXISTS docfile;
 CREATE TABLE docfile (
-  function varchar(100) DEFAULT '' NOT NULL,
+  function varchar(100) NOT NULL PRIMARY KEY,
   docfile varchar(100),
-       lineno integer,
-       key df_idx (function)
+       lineno integer
 );
 
 #
@@ -69,6 +68,19 @@
   proto_desc text,
   proto text,
        key p4_idx (function)
+);
+
+
+#
+# Table structure for table 'proto5'
+#
+
+DROP TABLE IF EXISTS proto5;
+CREATE TABLE proto5 (
+  function varchar(100) DEFAULT '' NOT NULL,
+  proto_desc text,
+  proto text,
+       key p5_idx (function)
 );
 
 #

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to