diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-22 13:38:59 +0100 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-22 13:38:59 +0100 |
commit | 19eaed60d57e0db936b4161d1976243cb322efc2 (patch) | |
tree | a18c18c4dca31c38f9b22df535833dbbf1b392b2 /update.php | |
parent | 5f7715529d147510c66d0bf68edcca09e7fe3f1b (diff) | |
parent | 808180ce5f9471aa36faf8861fb84d04b412f412 (diff) | |
download | volse-hubzilla-19eaed60d57e0db936b4161d1976243cb322efc2.tar.gz volse-hubzilla-19eaed60d57e0db936b4161d1976243cb322efc2.tar.bz2 volse-hubzilla-19eaed60d57e0db936b4161d1976243cb322efc2.zip |
Merge branch 'master' of https://github.com/friendica/friendica
Diffstat (limited to 'update.php')
-rwxr-xr-x | update.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/update.php b/update.php index 6a685a6ff..a69742a94 100755 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@ <?php -define( 'UPDATE_VERSION' , 1132 ); +define( 'UPDATE_VERSION' , 1133 ); /** * @@ -1127,3 +1127,12 @@ function update_1131() { } +function update_1132() { + q("CREATE TABLE IF NOT EXISTS `userd` ( +`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY , +`username` CHAR( 255 ) NOT NULL, +INDEX ( `username` ) +) ENGINE = MYISAM "); + +} + |