upgrade.php
changeset 331 f0eee185880a
parent 318 eec2dfd2f0a3
child 339 1ce3db9a46fb
equal deleted inserted replaced
330:acf430dc25e7 331:f0eee185880a
    68 
    68 
    69 // SCRIPT CONFIGURATION
    69 // SCRIPT CONFIGURATION
    70 // Everything related to versions goes here!
    70 // Everything related to versions goes here!
    71 
    71 
    72 // Valid versions to upgrade from
    72 // Valid versions to upgrade from
    73 $valid_versions = Array('1.0b1', '1.0b2', '1.0b3', '1.0b4', '1.0RC1', '1.0RC2', '1.0RC3', '1.0', '1.0.1', '1.0.1.1', '1.0.2b1', '1.0.2', '1.0.3', '1.0.4', '1.0.5');
    73 $valid_versions = Array('1.0b1', '1.0b2', '1.0b3', '1.0b4', '1.0RC1', '1.0RC2', '1.0RC3', '1.0', '1.0.1', '1.0.1.1', '1.0.2b1', '1.0.2', '1.0.3', '1.0.4', '1.0.5', '1.0.6');
    74 
    74 
    75 // Basically a list of dependencies, which should be resolved automatically
    75 // Basically a list of dependencies, which should be resolved automatically
    76 // If, for example, upgrading from 1.0b1 to 1.0RC1 requires one extra query that would not
    76 // If, for example, upgrading from 1.0b1 to 1.0RC1 requires one extra query that would not
    77 // normally be required (for whatever reason) then you would add a custom version number to the array under key '1.0b1'.
    77 // normally be required (for whatever reason) then you would add a custom version number to the array under key '1.0b1'.
    78 $deps_list = Array(
    78 $deps_list = Array(
    87     '1.0.1' => Array('1.0.1.1'),
    87     '1.0.1' => Array('1.0.1.1'),
    88     '1.0.1.1' => Array('1.0.2b1'),
    88     '1.0.1.1' => Array('1.0.2b1'),
    89     '1.0.2b1' => Array('1.0.2'),
    89     '1.0.2b1' => Array('1.0.2'),
    90     '1.0.2' => Array('1.0.3'),
    90     '1.0.2' => Array('1.0.3'),
    91     '1.0.3' => Array('1.0.4'),
    91     '1.0.3' => Array('1.0.4'),
    92     '1.0.4' => Array('1.0.5')
    92     '1.0.4' => Array('1.0.5'),
       
    93     '1.0.5' => array('1.0.6')
    93   );
    94   );
    94 $this_version   = '1.0.6';
    95 $this_version   = '1.0.6pl1';
    95 $func_list = Array(
    96 $func_list = Array(
    96     '1.0' => Array('u_1_0_1_update_del_votes'),
    97     '1.0' => Array('u_1_0_1_update_del_votes'),
    97     '1.0b4' => Array('u_1_0_RC1_update_user_ids', 'u_1_0_RC1_add_admins_to_group', 'u_1_0_RC1_alter_files_table', 'u_1_0_RC1_destroy_session_cookie', 'u_1_0_RC1_set_contact_email', 'u_1_0_RC1_update_page_text'), // ,
    98     '1.0b4' => Array('u_1_0_RC1_update_user_ids', 'u_1_0_RC1_add_admins_to_group', 'u_1_0_RC1_alter_files_table', 'u_1_0_RC1_destroy_session_cookie', 'u_1_0_RC1_set_contact_email', 'u_1_0_RC1_update_page_text'), // ,
    98     // '1.0RC2' => Array('u_1_0_populate_userpage_comments')
    99     // '1.0RC2' => Array('u_1_0_populate_userpage_comments')
    99     '1.0RC3' => Array('u_1_0_RC3_make_users_extra'),
   100     '1.0RC3' => Array('u_1_0_RC3_make_users_extra'),