-
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.
Merge pull request #33420 from owncloud/collaborative-tags-new-catego…
…ry-work-stable10 [stable10] Backport of new tag editable added to systemtag
- Loading branch information
Showing
18 changed files
with
474 additions
and
101 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
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,43 @@ | ||
<?php | ||
/** | ||
* @author Sujith Haridasan <[email protected]> | ||
* | ||
* @copyright Copyright (c) 2018, 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 OC\Migrations; | ||
|
||
use Doctrine\DBAL\Schema\Schema; | ||
use OCP\Migration\ISchemaMigration; | ||
|
||
class Version20181017105216 implements ISchemaMigration { | ||
|
||
/** @var string */ | ||
private $prefix; | ||
|
||
public function changeSchema(Schema $schema, array $options) { | ||
$this->prefix = $options['tablePrefix']; | ||
$table = $schema->getTable("{$this->prefix}systemtag"); | ||
if ($schema->hasTable("{$this->prefix}systemtag")) { | ||
if (!$table->hasColumn('assignable')) { | ||
$table->addColumn('assignable', 'integer'); | ||
$assignableColumn = $table->getColumn('assignable'); | ||
$assignableColumn->setDefault(0); | ||
} | ||
} | ||
} | ||
} |
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,55 @@ | ||
<?php | ||
/** | ||
* @author Sujith Haridasan <[email protected]> | ||
* | ||
* @copyright Copyright (c) 2018, 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 OC\Migrations; | ||
|
||
use OCP\IDBConnection; | ||
use OCP\Migration\ISqlMigration; | ||
|
||
/** | ||
* Added extra column assignable to systemtag table, post 10.0.10.1 version | ||
* this is required to identify editable tag. It is only | ||
* set to "1" for visible and editable tags. | ||
*/ | ||
class Version20181017120818 implements ISqlMigration { | ||
public function sql(IDBConnection $connection) { | ||
$valueToUpdate = 1; | ||
$qb = $connection->getQueryBuilder(); | ||
$qb->update('systemtag') | ||
->set( | ||
'assignable', | ||
$qb->expr()->literal($valueToUpdate) | ||
) | ||
->where( | ||
$qb->expr()->eq( | ||
'visibility', | ||
$qb->expr()->literal($valueToUpdate) | ||
) | ||
) | ||
->andWhere( | ||
$qb->expr()->eq( | ||
'editable', | ||
$qb->expr()->literal($valueToUpdate) | ||
) | ||
); | ||
return [$qb->getSQL()]; | ||
} | ||
} |
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
Oops, something went wrong.