diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-05-26 21:50:36 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-05-26 21:50:54 +0200 |
commit | 143287738ad9415b910240563de71cc7dbd6f2da (patch) | |
tree | 3632c9d6d1e0f549ccef6ed3787fff3c6e5344e0 /apps/gallery | |
parent | 982cde0bb1a9230b793f7341eba5d8117c48ca0b (diff) | |
download | nextcloud-server-143287738ad9415b910240563de71cc7dbd6f2da.tar.gz nextcloud-server-143287738ad9415b910240563de71cc7dbd6f2da.zip |
allow longer paths for gallery
Diffstat (limited to 'apps/gallery')
-rw-r--r-- | apps/gallery/appinfo/database.xml | 6 | ||||
-rw-r--r-- | apps/gallery/appinfo/version | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/gallery/appinfo/database.xml b/apps/gallery/appinfo/database.xml index e3b13f7e93c..f370e1521e4 100644 --- a/apps/gallery/appinfo/database.xml +++ b/apps/gallery/appinfo/database.xml @@ -31,13 +31,13 @@ <name>album_path</name> <type>text</type> <notnull>true</notnull> - <length>100</length> + <length>256</length> </field> <field> <name>parent_path</name> <type>text</type> <notnull>true</notnull> - <length>100</length> + <length>256</length> </field> </declaration> </table> @@ -63,7 +63,7 @@ <name>file_path</name> <type>text</type> <notnull>true</notnull> - <length>100</length> + <length>256</length> </field> </declaration> </table> diff --git a/apps/gallery/appinfo/version b/apps/gallery/appinfo/version index 2b7c5ae0184..17b2ccd9bf9 100644 --- a/apps/gallery/appinfo/version +++ b/apps/gallery/appinfo/version @@ -1 +1 @@ -0.4.2 +0.4.3 |