diff options
author | friendica <info@friendica.com> | 2013-11-18 20:10:53 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-18 20:10:53 -0800 |
commit | d37f4da37b62bdeabe8fbf048493bfca3ebd6a2d (patch) | |
tree | dd5460e97abfbac604ca27c662d1dd7b97475374 /install | |
parent | bbd69c1e815c8c8be8265b4dc0554ae60e1ca7f6 (diff) | |
download | volse-hubzilla-d37f4da37b62bdeabe8fbf048493bfca3ebd6a2d.tar.gz volse-hubzilla-d37f4da37b62bdeabe8fbf048493bfca3ebd6a2d.tar.bz2 volse-hubzilla-d37f4da37b62bdeabe8fbf048493bfca3ebd6a2d.zip |
remove the challenge table as well
Diffstat (limited to 'install')
-rw-r--r-- | install/database.sql | 10 | ||||
-rw-r--r-- | install/update.php | 9 |
2 files changed, 8 insertions, 11 deletions
diff --git a/install/database.sql b/install/database.sql index 60e17c900..5496072a9 100644 --- a/install/database.sql +++ b/install/database.sql @@ -128,16 +128,6 @@ CREATE TABLE IF NOT EXISTS `cache` ( PRIMARY KEY (`k`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -CREATE TABLE IF NOT EXISTS `challenge` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `challenge` char(255) NOT NULL, - `dfrn-id` char(255) NOT NULL, - `expire` int(11) NOT NULL, - `type` char(255) NOT NULL, - `last_update` char(255) NOT NULL, - PRIMARY KEY (`id`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - CREATE TABLE IF NOT EXISTS `channel` ( `channel_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `channel_account_id` int(10) unsigned NOT NULL DEFAULT '0', diff --git a/install/update.php b/install/update.php index f608075fc..31eac2963 100644 --- a/install/update.php +++ b/install/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1082 ); +define( 'UPDATE_VERSION' , 1083 ); /** * @@ -903,3 +903,10 @@ function update_r1081() { return UPDATE_SUCCESS; return UPDATE_FAILED; } + +function update_r1082() { + $r = q("DROP TABLE `challenge` "); + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; +} |