-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature]: Automaticaly set imported element userModification (#418)
* Add userOwner to Queue * Updated Admin namespace and added comment about userOwner * Removed unnecessary escape characters in QueueService Co-authored-by: Matthias Schuhmayer <[email protected]> * Updated latest migration class in Installer --------- Co-authored-by: Matthias Schuhmayer <[email protected]>
- Loading branch information
Showing
6 changed files
with
84 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?php | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
namespace Pimcore\Bundle\DataImporterBundle\Migrations; | ||
|
||
use Doctrine\DBAL\Schema\Schema; | ||
use Pimcore\Bundle\DataImporterBundle\Queue\QueueService; | ||
use Pimcore\Migrations\BundleAwareMigration; | ||
|
||
class Version20240715160305 extends BundleAwareMigration | ||
{ | ||
public function up(Schema $schema): void | ||
{ | ||
if ($schema->hasTable(QueueService::QUEUE_TABLE_NAME)) { | ||
$queueTable = $schema->getTable(QueueService::QUEUE_TABLE_NAME); | ||
$queueTable->addColumn('userOwner', 'integer', ['notnull' => true, 'default' => 0])->setUnsigned(true); | ||
$queueTable->addIndex(['userOwner'], 'bundle_index_queue_executiontype_userOwner'); | ||
} | ||
} | ||
|
||
public function down(Schema $schema): void | ||
{ | ||
if ($schema->hasTable(QueueService::QUEUE_TABLE_NAME)) { | ||
$queueTable = $schema->getTable(QueueService::QUEUE_TABLE_NAME); | ||
$queueTable->dropColumn('userOwner'); | ||
$queueTable->dropIndex('bundle_index_queue_executiontype_userOwner'); | ||
} | ||
} | ||
|
||
protected function getBundleName(): string | ||
{ | ||
return 'PimcoreDataImporterBundle'; | ||
} | ||
} |
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