]> source.dussan.org Git - nextcloud-server.git/commitdiff
Cache: add seccond mtime field
authorRobin Appelman <icewind@owncloud.com>
Sun, 10 Feb 2013 11:05:41 +0000 (12:05 +0100)
committerRobin Appelman <icewind@owncloud.com>
Sun, 10 Feb 2013 11:05:41 +0000 (12:05 +0100)
db_structure.xml
lib/util.php

index fc7f1082ffa28f7f9bc74a1c011faffc85f6df28..a86e5e6a8fd043fdfc39ac80635c3a44155f34d5 100644 (file)
                                <length>4</length>
                        </field>
 
+                       <field>
+                               <name>storage_mtime</name>
+                               <type>integer</type>
+                               <default></default>
+                               <notnull>true</notnull>
+                               <length>4</length>
+                       </field>
+
                        <field>
                                <name>encrypted</name>
                                <type>integer</type>
index a5fe4cb175a3ac95c74ad997126687f3d8c52a89..7950586b5804aa1981be1064a4fe52af83c6dde4 100755 (executable)
@@ -74,7 +74,7 @@ class OC_Util {
         */
        public static function getVersion() {
                // hint: We only can count up. So the internal version number of ownCloud 4.5 will be 4.90.0. This is not visible to the user
-               return array(4, 91, 9);
+               return array(4, 91, 10);
        }
 
        /**