aboutsummaryrefslogtreecommitdiffstats
path: root/update.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-06-07 15:48:04 -0700
committerfriendica <info@friendica.com>2012-06-07 15:48:04 -0700
commit67d8afb9d18df137fddc991443f9b796b5821210 (patch)
treec9f505934f64e6bfa30a9cab64f6732c8ea9537d /update.php
parentc4aeb57fcda6253fd9ca91b5177a17b97e3c9b70 (diff)
parentf4a80fcf2474a13b2d733f59f1a928b40841d83c (diff)
downloadvolse-hubzilla-67d8afb9d18df137fddc991443f9b796b5821210.tar.gz
volse-hubzilla-67d8afb9d18df137fddc991443f9b796b5821210.tar.bz2
volse-hubzilla-67d8afb9d18df137fddc991443f9b796b5821210.zip
Merge https://github.com/friendica/friendica into pull
Diffstat (limited to 'update.php')
-rw-r--r--update.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/update.php b/update.php
index 35a6771b0..0f7bf664d 100644
--- a/update.php
+++ b/update.php
@@ -1,6 +1,6 @@
<?php
-define( 'UPDATE_VERSION' , 1148 );
+define( 'UPDATE_VERSION' , 1149 );
/**
*
@@ -1283,3 +1283,9 @@ function update_1147() {
return UPDATE_SUCCESS ;
}
+function update_1148() {
+ $r = q("ALTER TABLE photo ADD type CHAR(128) NOT NULL DEFAULT 'image/jpeg' AFTER filename");
+ if (!$r)
+ return UPDATE_FAILED;
+ return UPDATE_SUCCESS;
+}