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:54:49 +0200 |
commit | 3db5fb891cd38736bcb15e859374f0ff81a8c32b (patch) | |
tree | f23bcb090a5b26e9e2f4744372e6ec23ac1385b8 | |
parent | 54c421f384cc53ea9f10ee2eea255b6bfdfcc835 (diff) | |
download | nextcloud-server-3db5fb891cd38736bcb15e859374f0ff81a8c32b.tar.gz nextcloud-server-3db5fb891cd38736bcb15e859374f0ff81a8c32b.zip |
allow longer paths for 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 |