diff options
author | friendica <info@friendica.com> | 2012-12-20 22:53:50 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-12-20 22:53:50 -0800 |
commit | abee07f12bc1fab1b6304215662a36aedba6aada (patch) | |
tree | 2355cdd3b88bd43f2a95737cc98fbdb76af03c9f /install/database.sql | |
parent | 1c09e055c6178c67cf67109c36e85006ab59c614 (diff) | |
download | volse-hubzilla-abee07f12bc1fab1b6304215662a36aedba6aada.tar.gz volse-hubzilla-abee07f12bc1fab1b6304215662a36aedba6aada.tar.bz2 volse-hubzilla-abee07f12bc1fab1b6304215662a36aedba6aada.zip |
more DB cleanup
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/install/database.sql b/install/database.sql index 4030eb7ea..83684c3d7 100644 --- a/install/database.sql +++ b/install/database.sql @@ -361,13 +361,6 @@ CREATE TABLE IF NOT EXISTS `group_member` ( KEY `xchan` (`xchan`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -CREATE TABLE IF NOT EXISTS `guid` ( - `id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `guid` char(64) NOT NULL, - PRIMARY KEY (`id`), - KEY `guid` (`guid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - CREATE TABLE IF NOT EXISTS `hook` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hook` char(255) NOT NULL, @@ -564,17 +557,6 @@ CREATE TABLE IF NOT EXISTS `notify` ( KEY `otype` (`otype`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -CREATE TABLE IF NOT EXISTS `notify-threads` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `notify-id` int(11) NOT NULL, - `master-parent-item` int(10) unsigned NOT NULL DEFAULT '0', - `parent-item` int(10) unsigned NOT NULL DEFAULT '0', - `receiver-uid` int(11) NOT NULL, - PRIMARY KEY (`id`), - KEY `master-parent-item` (`master-parent-item`), - KEY `receiver-uid` (`receiver-uid`) -) ENGINE=MyISAM DEFAULT CHARSET=utf8; - CREATE TABLE IF NOT EXISTS `outq` ( `outq_hash` char(255) NOT NULL, `outq_account` int(10) unsigned NOT NULL DEFAULT '0', |