Skip to content

Commit

Permalink
Updated DB columns for development update script
Browse files Browse the repository at this point in the history
  • Loading branch information
eSilverStrike committed Oct 14, 2019
1 parent 0336199 commit 8bd8fb6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions public_html/admin/install/devel-db-update.php
Expand Up @@ -124,6 +124,9 @@ function update_DatabaseFor221()
// Add `autologin_key` column to `users' table
$_SQL[] = "ALTER TABLE {$_TABLES['users']} ADD `autologin_key` VARCHAR(250) NOT NULL DEFAULT '' AFTER `twofactorauth_secret`";

// Add `postmode` column to `users' table
$_SQL[] = "ALTER TABLE {$_TABLES['users']} ADD `postmode` VARCHAR(10) NOT NULL DEFAULT 'plaintext' AFTER `autologin_key`";

// ***************************************
// Core Plugin Updates Here (including version update)

Expand Down

0 comments on commit 8bd8fb6

Please sign in to comment.