diff options
author | Friendika <info@friendika.com> | 2010-11-21 23:00:01 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-21 23:00:01 -0800 |
commit | de6c777d3f6753b8fb5f33bc0ee8acafc6772551 (patch) | |
tree | ef95d120dd770da99071b195fdc08626981cc639 /update.php | |
parent | 552c56102ea70c6c9e32e13675b564a36814a069 (diff) | |
download | volse-hubzilla-de6c777d3f6753b8fb5f33bc0ee8acafc6772551.tar.gz volse-hubzilla-de6c777d3f6753b8fb5f33bc0ee8acafc6772551.tar.bz2 volse-hubzilla-de6c777d3f6753b8fb5f33bc0ee8acafc6772551.zip |
infrastructure for queueing, redelivery
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/update.php b/update.php index c4995604e..57020966f 100644 --- a/update.php +++ b/update.php @@ -167,3 +167,12 @@ PRIMARY KEY ( `id` ) } +function update_1018() { + q("CREATE TABLE IF NOT EXISTS `queue` ( +`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , +`cid` INT NOT NULL , +`created` DATETIME NOT NULL , +`last` DATETIME NOT NULL , +`content` MEDIUMTEXT NOT NULL +) ENGINE = MYISAM DEFAULT CHARSET=utf8 "); +} |