Skip to content

Commit

Permalink
Merge pull request #1582 from spryker-shop/hackathon/feature/frw-8920…
Browse files Browse the repository at this point in the history
…/master-data-migration

FRW-8920 nonsplit to split merge
  • Loading branch information
gechetspr authored Aug 30, 2024
2 parents 20776ff + 1822c5f commit 55fad48
Show file tree
Hide file tree
Showing 5 changed files with 139 additions and 1 deletion.
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -546,6 +546,8 @@
"spryker/health-check-extension": "^1.0.0",
"spryker/http": "^1.5.0",
"spryker/http-extension": "^1.0.0",
"spryker/incremental-installer": "^0.1.0",
"spryker/incremental-installer-extension": "^0.1.0",
"spryker/index-generator": "^1.0.0",
"spryker/install": "^1.0.0",
"spryker/installer": "^4.0.0",
Expand Down
90 changes: 89 additions & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

/**
* This file is part of the Spryker Suite.
* For full license information, please view the LICENSE file that was distributed with this source code.
*/

namespace Orm\Zed\IncrementalInstaller\Persistence;

use Spryker\Zed\IncrementalInstaller\Persistence\Propel\AbstractSpyIncrementalInstaller as BaseSpyIncrementalInstaller;

/**
* Skeleton subclass for representing a row from the 'spy_incremental_installer' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*/
class SpyIncrementalInstaller extends BaseSpyIncrementalInstaller
{
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

/**
* This file is part of the Spryker Suite.
* For full license information, please view the LICENSE file that was distributed with this source code.
*/

namespace Orm\Zed\IncrementalInstaller\Persistence;

use Spryker\Zed\IncrementalInstaller\Persistence\Propel\AbstractSpyIncrementalInstallerQuery as BaseSpyIncrementalInstallerQuery;

/**
* Skeleton subclass for performing query and update operations on the 'spy_incremental_installer' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*/
class SpyIncrementalInstallerQuery extends BaseSpyIncrementalInstallerQuery
{
}
2 changes: 2 additions & 0 deletions src/Pyz/Zed/Console/ConsoleDependencyProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
use Spryker\Zed\EventBehavior\Communication\Console\EventBehaviorTriggerTimeoutConsole;
use Spryker\Zed\EventBehavior\Communication\Console\EventTriggerListenerConsole;
use Spryker\Zed\EventBehavior\Communication\Plugin\Console\EventBehaviorPostHookPlugin;
use Spryker\Zed\IncrementalInstaller\Communication\Console\IncrementalInstallersConsole;
use Spryker\Zed\IndexGenerator\Communication\Console\PostgresIndexGeneratorConsole;
use Spryker\Zed\IndexGenerator\Communication\Console\PostgresIndexRemoverConsole;
use Spryker\Zed\Installer\Communication\Console\InitializeDatabaseConsole;
Expand Down Expand Up @@ -453,6 +454,7 @@ protected function getConsoleCommands(Container $container): array
new SendPushNotificationConsole(),
new RouterCacheWarmUpConsole(),
new OrderMatrixConsole(),
new IncrementalInstallersConsole(),
];

$propelCommands = $container->getLocator()->propel()->facade()->getConsoleCommands();
Expand Down

0 comments on commit 55fad48

Please sign in to comment.