* Start using "schema_version" key instead of "system_version" * Refactored the upgrade code a bit and make it be automatically invoked from the Zend bootstrap if a schema update is needed. * Fixed error logging in certain cases * Fixed an exception in Show related to image_path
6 lines
320 B
SQL
6 lines
320 B
SQL
-- Replacing system_version with schema_version
|
|
DELETE FROM cc_pref WHERE keystr = 'system_version';
|
|
INSERT INTO cc_pref (keystr, valstr) VALUES ('schema_version', '2.5.2');
|
|
|
|
ALTER TABLE cc_show ADD COLUMN image_path varchar(255) DEFAULT '';
|
|
ALTER TABLE cc_show_instances ADD COLUMN description varchar(255) DEFAULT '';
|