From d37f4da37b62bdeabe8fbf048493bfca3ebd6a2d Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 18 Nov 2013 20:10:53 -0800 Subject: [PATCH] remove the challenge table as well --- boot.php | 2 +- install/database.sql | 10 ---------- install/update.php | 9 ++++++++- 3 files changed, 9 insertions(+), 12 deletions(-) diff --git a/boot.php b/boot.php index df729a52a..ed96ca4c1 100755 --- a/boot.php +++ b/boot.php @@ -45,7 +45,7 @@ define ( 'RED_PLATFORM', 'Red Matrix' ); define ( 'RED_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1082 ); +define ( 'DB_UPDATE_VERSION', 1083 ); define ( 'EOL', '
' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); 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 @@