diff options
author | Thomas Willingham <founder@kakste.com> | 2013-03-14 22:50:30 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-03-14 22:50:30 +0000 |
commit | d07971b909363dd82faee3e4b5a218cb21d376dc (patch) | |
tree | 1d4b76c4ed24bf3c8cbb81c73069eb8ab4b2644c /install/database.sql | |
parent | fbc5260995866c280fbc48bfb7899836f46136f4 (diff) | |
parent | ffcba3db81d85ae8bdc56f1772c7675aef56c78e (diff) | |
download | volse-hubzilla-d07971b909363dd82faee3e4b5a218cb21d376dc.tar.gz volse-hubzilla-d07971b909363dd82faee3e4b5a218cb21d376dc.tar.bz2 volse-hubzilla-d07971b909363dd82faee3e4b5a218cb21d376dc.zip |
Merge remote-tracking branch 'upstream/master'
Conflicts:
view/theme/redbasic/css/style.css
Diffstat (limited to 'install/database.sql')
-rw-r--r-- | install/database.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/install/database.sql b/install/database.sql index 24b5a550a..4f503fc12 100644 --- a/install/database.sql +++ b/install/database.sql @@ -840,6 +840,13 @@ CREATE TABLE IF NOT EXISTS `tokens` ( KEY `uid` (`uid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; +CREATE TABLE IF NOT EXISTS `updates` ( + `ud_hash` char(128) NOT NULL, + `ud_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', + PRIMARY KEY (`ud_hash`), + KEY `ud_date` (`ud_date`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + CREATE TABLE IF NOT EXISTS `verify` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `channel` int(10) unsigned NOT NULL DEFAULT '0', |