-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
143 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?php | ||
/** | ||
* @author Viktar Dubiniuk <[email protected]> | ||
* | ||
* @copyright Copyright (c) 2020, ownCloud GmbH | ||
* @license AGPL-3.0 | ||
* | ||
* This code is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License, version 3, | ||
* as published by the Free Software Foundation. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License, version 3, | ||
* along with this program. If not, see <http://www.gnu.org/licenses/> | ||
* | ||
*/ | ||
|
||
namespace OCA\DAV\Migrations; | ||
|
||
use Doctrine\DBAL\Schema\Schema; | ||
use Doctrine\DBAL\Types\Type; | ||
use OCA\DAV\DAV\AbstractCustomPropertiesBackend; | ||
use OCP\Migration\ISchemaMigration; | ||
|
||
/* | ||
* Adds a new property type column to properties and dav_properties tables | ||
*/ | ||
class Version20200427142541 implements ISchemaMigration { | ||
|
||
/** | ||
* @param Schema $schema | ||
* @param array $options | ||
*/ | ||
public function changeSchema(Schema $schema, array $options) { | ||
$prefix = $options['tablePrefix']; | ||
$tableNames = ['properties', 'dav_properties']; | ||
|
||
foreach ($tableNames as $tableName) { | ||
$table = $schema->getTable("{$prefix}{$tableName}"); | ||
if ($table->hasColumn('propertytype') === false) { | ||
$table->addColumn( | ||
'propertytype', | ||
Type::SMALLINT, | ||
[ | ||
'notnull' => true, | ||
'default' => AbstractCustomPropertiesBackend::VT_STRING, | ||
] | ||
); | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Bugfix: Properly store complex Webdav properties | ||
|
||
Fixed: setting custom complex DAV property and reading it returned | ||
just an 'Object' string instead of the original property value. | ||
|
||
https://github.com/owncloud/core/pull/37314 | ||
https://github.com/owncloud/core/issues/32670 | ||
https://github.com/owncloud/core/issues/37027 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters