phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] CVS: property/setup default_records.inc.php,1.15,1.16


From: Sigurd Nes <address@hidden>
Subject: [Phpgroupware-cvs] CVS: property/setup default_records.inc.php,1.15,1.16 setup.inc.php,1.40,1.41 tables_current.inc.php,1.65,1.66
Date: Tue, 29 Apr 2003 08:41:33 -0400

Update of /cvsroot/phpgroupware/property/setup
In directory subversions:/tmp/cvs-serv3714/setup

Modified Files:
        default_records.inc.php setup.inc.php tables_current.inc.php 
Log Message:
no message

Index: default_records.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/property/setup/default_records.inc.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** default_records.inc.php     24 Apr 2003 11:01:23 -0000      1.15
--- default_records.inc.php     29 Apr 2003 12:41:31 -0000      1.16
***************
*** 65,68 ****
--- 65,84 ----
  
  #
+ # `fm_document_category`
+ #
+ 
+ $GLOBALS['phpgw_setup']->oProc->query("INSERT INTO fm_document_category (id, 
descr) VALUES ('1', 'Picture')");
+ $GLOBALS['phpgw_setup']->oProc->query("INSERT INTO fm_document_category (id, 
descr) VALUES ('2', 'Report')");
+ $GLOBALS['phpgw_setup']->oProc->query("INSERT INTO fm_document_category (id, 
descr) VALUES ('3', 'Instruction')");
+ 
+ #
+ # `fm_document_status`
+ #
+ 
+ $GLOBALS['phpgw_setup']->oProc->query("INSERT INTO fm_document_status (id, 
descr) VALUES ('draft', 'Draft')");
+ $GLOBALS['phpgw_setup']->oProc->query("INSERT INTO fm_document_status (id, 
descr) VALUES ('final', 'Final')");
+ $GLOBALS['phpgw_setup']->oProc->query("INSERT INTO fm_document_status (id, 
descr) VALUES ('obsolete', 'obsolete')");
+ 
+ #
  # `fm_equipment_status`
  #

Index: setup.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/property/setup/setup.inc.php,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -r1.40 -r1.41
*** setup.inc.php       29 Apr 2003 12:20:07 -0000      1.40
--- setup.inc.php       29 Apr 2003 12:41:31 -0000      1.41
***************
*** 141,144 ****
--- 141,145 ----
                'fm_document',
                'fm_document_category',
+               'fm_document_status',
                'fm_submodule',
                'fm_wo_workorder_history',

Index: tables_current.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/property/setup/tables_current.inc.php,v
retrieving revision 1.65
retrieving revision 1.66
diff -C2 -r1.65 -r1.66
*** tables_current.inc.php      29 Apr 2003 12:20:07 -0000      1.65
--- tables_current.inc.php      29 Apr 2003 12:41:31 -0000      1.66
***************
*** 1293,1296 ****
--- 1293,1308 ----
                ),
  
+ 
+               'fm_document_status' => array(
+                       'fd' => array(
+                               'id' => array('type' => 'varchar', 'precision' 
=> 20,'nullable' => False),
+                               'descr' => array('type' => 'varchar', 
'precision' => 255,'nullable' => False)
+                       ),
+                       'pk' => array('id'),
+                       'fk' => array(),
+                       'ix' => array(),
+                       'uc' => array()
+               ),
+ 
                'fm_submodule'=> array(
                        'fd' => array(





reply via email to

[Prev in Thread] Current Thread [Next in Thread]