Changeset 1977 for branches/2.0


Ignore:
Timestamp:
02/04/10 10:09:57 (14 years ago)
Author:
viani
Message:

Ticket #899 - Atualizando versão do módulo workflow.

Location:
branches/2.0/workflow/setup
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/workflow/setup/default_records.inc.php

    r1967 r1977  
    1212  \***************************************************************************/ 
    1313/* Default Workflow Database */ 
    14  
    15 /* creating some indexes on the egroupoware database */ 
    16 $GLOBALS['phpgw']->ADOdb->query('CREATE INDEX egw_wf_instances_wf_name_idx ON egw_wf_instances(UPPER(wf_name))'); 
    17 $GLOBALS['phpgw']->ADOdb->query('CREATE INDEX egw_wf_workitems_wf_instance_id_idx ON egw_wf_workitems(wf_instance_id)'); 
    18  
    1914 
    2015/* extract the database connection parameters */ 
  • branches/2.0/workflow/setup/setup.inc.php

    r1490 r1977  
    1313        $setup_info['workflow']['name']                 = 'workflow'; 
    1414        $setup_info['workflow']['title']                = 'Workflow management'; 
    15         $setup_info['workflow']['version']              = '2.0.001'; 
     15        $setup_info['workflow']['version']              = '2.0.002'; 
    1616        $setup_info['workflow']['app_order']    = 10; 
    1717        $setup_info['workflow']['enable']               = 1; 
  • branches/2.0/workflow/setup/tables_update.inc.php

    r1490 r1977  
    12041204                return $GLOBALS['setup_info']['workflow']['currentver']; 
    12051205        } 
     1206        $test[] = '2.0.001'; 
     1207        function workflow_upgrade2_0_001() 
     1208        { 
     1209                #updating the current version 
     1210                $GLOBALS['setup_info']['workflow']['currentver'] = '2.0.002'; 
     1211                return $GLOBALS['setup_info']['workflow']['currentver']; 
     1212        } 
    12061213?> 
Note: See TracChangeset for help on using the changeset viewer.