diff options
author | friendica <info@friendica.com> | 2013-11-18 19:54:02 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-18 19:54:02 -0800 |
commit | bbd69c1e815c8c8be8265b4dc0554ae60e1ca7f6 (patch) | |
tree | 4aed3f17d565edaa31eb36d71af3cb4734c020cc /install/database.sql | |
parent | 5cf5cbd193258936515a487f9259e960a76e4106 (diff) | |
download | volse-hubzilla-bbd69c1e815c8c8be8265b4dc0554ae60e1ca7f6.tar.gz volse-hubzilla-bbd69c1e815c8c8be8265b4dc0554ae60e1ca7f6.tar.bz2 volse-hubzilla-bbd69c1e815c8c8be8265b4dc0554ae60e1ca7f6.zip |
drop the queue table which we no longer use
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/install/database.sql b/install/database.sql index 3a05c28ec..60e17c900 100644 --- a/install/database.sql +++ b/install/database.sql @@ -775,22 +775,6 @@ CREATE TABLE IF NOT EXISTS `profile_check` ( KEY `expire` (`expire`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -CREATE TABLE IF NOT EXISTS `queue` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `cid` int(11) NOT NULL, - `network` char(32) NOT NULL, - `created` datetime NOT NULL, - `last` datetime NOT NULL, - `content` mediumtext NOT NULL, - `batch` tinyint(1) NOT NULL DEFAULT '0', - PRIMARY KEY (`id`), - KEY `cid` (`cid`), - KEY `network` (`network`), - KEY `created` (`created`), - KEY `last` (`last`), - KEY `batch` (`batch`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - CREATE TABLE IF NOT EXISTS `register` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `hash` char(255) NOT NULL, |