From b194ac3ddeeab6ce923a313725b3ce85fe849baa Mon Sep 17 00:00:00 2001
From: Michael Gapczynski <mtgap@owncloud.com>
Date: Wed, 12 Sep 2012 01:01:45 -0400
Subject: [PATCH] Add expiration column to share table and bump version number

---
 db_structure.xml | 7 +++++++
 lib/util.php     | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/db_structure.xml b/db_structure.xml
index 8c96fa7c39..d4299e1e8a 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 3b2f476ada..01f53cb2f3 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);
 	}
 
 	/**
-- 
GitLab