diff options
author | friendica <info@friendica.com> | 2013-03-13 16:28:41 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-03-13 16:28:41 -0700 |
commit | ed2bcb6855e3d0e74e1b85aeb69e380a562b0c89 (patch) | |
tree | d8115f7721ba3e56af57ee714956e653c57bd682 /install/database.sql | |
parent | 62e55ae63b8a32de09987a6e738fd620a9b2f7ea (diff) | |
download | volse-hubzilla-ed2bcb6855e3d0e74e1b85aeb69e380a562b0c89.tar.gz volse-hubzilla-ed2bcb6855e3d0e74e1b85aeb69e380a562b0c89.tar.bz2 volse-hubzilla-ed2bcb6855e3d0e74e1b85aeb69e380a562b0c89.zip |
directory synchronisation timestamps
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', |