diff options
author | root <root@diekershoff.homeunix.net> | 2010-12-21 07:14:58 +0100 |
---|---|---|
committer | root <root@diekershoff.homeunix.net> | 2010-12-21 07:14:58 +0100 |
commit | 8cfa93b730f87edf98c52e9a38cfa015ce1f5d47 (patch) | |
tree | da79ea09482cf8984c7d9e02076dd2e4f0e8e65e /update.php | |
parent | ad32d85cfaa775efbd89b273bd51c82f4e45baab (diff) | |
parent | ddec422de6707809aceb541e1191073b43aec18a (diff) | |
download | volse-hubzilla-8cfa93b730f87edf98c52e9a38cfa015ce1f5d47.tar.gz volse-hubzilla-8cfa93b730f87edf98c52e9a38cfa015ce1f5d47.tar.bz2 volse-hubzilla-8cfa93b730f87edf98c52e9a38cfa015ce1f5d47.zip |
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/update.php b/update.php index c5aa56194..81c5f0aea 100644 --- a/update.php +++ b/update.php @@ -243,3 +243,21 @@ function update_1023() { ADD `login_date` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `register_date` "); } +function update_1024() { + q("ALTER TABLE `profile` ADD `keywords` TEXT NOT NULL AFTER `religion` "); +} + +function update_1025() { + q("ALTER TABLE `user` ADD `maxreq` int(11) NOT NULL DEFAULT '10' AFTER `pwdreset` "); +} + +function update_1026() { + q("CREATE TABLE IF NOT EXISTS `hook` ( + `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , + `hook` CHAR( 255 ) NOT NULL , + `file` CHAR( 255 ) NOT NULL , + `function` CHAR( 255 ) NOT NULL + ) ENGINE = MYISAM DEFAULT CHARSET=utf8 "); +} + + |