Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2012-09-12 09:01:45 +0400
committerMichael Gapczynski <mtgap@owncloud.com>2012-09-12 09:01:45 +0400
commitb194ac3ddeeab6ce923a313725b3ce85fe849baa (patch)
tree028c4166dfbc98e3f911eb70257d8ef985611d4c
parent6c29334b4888309e7b60cbdf4defdac1c47195bf (diff)
Add expiration column to share table and bump version number
-rw-r--r--db_structure.xml7
-rwxr-xr-xlib/util.php2
2 files changed, 8 insertions, 1 deletions
diff --git a/db_structure.xml b/db_structure.xml
index 8c96fa7c39c..d4299e1e8a5 100644
--- a/db_structure.xml
+++ b/db_structure.xml
@@ -563,6 +563,13 @@
<length>1</length>
</field>
+ <field>
+ <name>expiration</name>
+ <type>timestamp</type>
+ <default></default>
+ <notnull>false</notnull>
+ </field>
+
</declaration>
</table>
diff --git a/lib/util.php b/lib/util.php
index 3b2f476ada2..01f53cb2f38 100755
--- a/lib/util.php
+++ b/lib/util.php
@@ -75,7 +75,7 @@ class OC_Util {
* @return array
*/
public static function getVersion(){
- return array(4,82,4);
+ return array(4,82,5);
}
/**