Skip to content

Commit

Permalink
Update Development DB Upgrade script
Browse files Browse the repository at this point in the history
  • Loading branch information
eSilverStrike committed Dec 1, 2017
1 parent ba71400 commit 8918d4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public_html/admin/install/devel-db-update.php
Expand Up @@ -74,7 +74,7 @@ function update_DatabaseFor220()
$_SQL[] = "ALTER TABLE {$_TABLES['storysubmission']} ADD `meta_keywords` TEXT NULL AFTER `meta_description`";

// Add `status_code` column to the `routes` table
$_SQL[] = "ALTER TABLE {$_TABLES['routes']} ADD `status_code` INT(11) NOT NULL DEFAULT 302 AFTER `route`";
$_SQL[] = "ALTER TABLE {$_TABLES['routes']} ADD `status_code` INT NOT NULL DEFAULT 200 AFTER `route`";

// Add `css_id` and `css_classes` columns to the `blocks` table
$_SQL[] = "ALTER TABLE {$_TABLES['blocks']} ADD `css_id` VARCHAR(255) NOT NULL DEFAULT '' AFTER `help`";
Expand Down

0 comments on commit 8918d4b

Please sign in to comment.