upgrade.sql
changeset 142 ca9118d9c0f2
parent 129 0b5244001799
child 145 6f0bbf88c325
child 149 42c6c83b8a00
equal deleted inserted replaced
141:13a43f08ffe1 142:ca9118d9c0f2
     1 -- Enano CMS - upgrade SQL
     1 -- Enano CMS - upgrade SQL
     2 -- Variables are in the format {{VAR_NAME}}
     2 -- Variables are in the format {{VAR_NAME}}
     3 -- ALL NON-SQL LINES, even otherwise blank lines, must start with "--" or they will get sent to MySQL!
     3 -- ALL NON-SQL LINES, even otherwise blank lines, must start with "--" or they will get sent to MySQL!
     4 -- Common tasks (version numbers)
     4 -- Common tasks (version numbers)
     5 DELETE FROM {{TABLE_PREFIX}}config WHERE config_name='enano_version' OR config_name='enano_beta_version' OR config_name='enano_alpha_version' OR config_name='enano_rc_version';
     5 DELETE FROM {{TABLE_PREFIX}}config WHERE config_name='enano_version' OR config_name='enano_beta_version' OR config_name='enano_alpha_version' OR config_name='enano_rc_version';
     6 INSERT INTO {{TABLE_PREFIX}}config (config_name, config_value) VALUES( 'enano_version', '1.0.1.1' );
     6 INSERT INTO {{TABLE_PREFIX}}config (config_name, config_value) VALUES( 'enano_version', '1.0.2' );
       
     7 ---BEGIN 1.0.1.1---
       
     8 -- No changes in this release
       
     9 ---END 1.0.1.1---
     7 ---BEGIN 1.0.1---
    10 ---BEGIN 1.0.1---
     8 -- No changes in this release
    11 -- No changes in this release
     9 ---END 1.0.1---
    12 ---END 1.0.1---
    10 ---BEGIN 1.0---
    13 ---BEGIN 1.0---
    11 -- Fix for obnoxious $_GET issue
    14 -- Fix for obnoxious $_GET issue