Add the column so we keep the value from before the update

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2017-05-18 14:28:27 +02:00
parent d41fd7471c
commit fad02fe00c
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
3 changed files with 11 additions and 2 deletions

View File

@ -381,7 +381,8 @@ class RequestHandlerControllerTest extends TestCase {
'accepted' => '0',
'expiration' => null,
'password' => null,
'mail_send' => '0'
'mail_send' => '0',
'share_name' => null,
];
$searchToken = $correctToken ? 'token' : 'wrongToken';

View File

@ -922,6 +922,14 @@
<length>1</length>
</field>
<field>
<name>share_name</name>
<type>text</type>
<default></default>
<notnull>false</notnull>
<length>64</length>
</field>
<index>
<name>item_share_type_index</name>
<field>

View File

@ -26,7 +26,7 @@
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
// when updating major/minor version number.
$OC_Version = array(12, 0, 0, 21);
$OC_Version = array(12, 0, 0, 22);
// The human readable string
$OC_VersionString = '12.0 beta 4';