Cache: add seccond mtime field

This commit is contained in:
Robin Appelman 2013-02-10 12:05:41 +01:00
parent 1c56539c01
commit 9c1196d73e
2 changed files with 9 additions and 1 deletions

View File

@ -261,6 +261,14 @@
<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>

View File

@ -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);
}
/**