vendor/bluue/sales-bundle/migrations/Version20241015145924.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace SalesBundleMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20241015145924 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.     }
  11.     public function down(Schema $schema): void
  12.     {
  13.     }
  14.     public function postUp(Schema $schema): void
  15.     {
  16.         parent::postUp($schema);
  17.         $this->connection->insert('cron_job', [
  18.             'name' => 'reset-number-reference',
  19.             'command' => 'bluue-bundle:sales:reset-number-reference',
  20.             'schedule' => '0 * 1 * *',
  21.             'description' => '',
  22.             'enabled' => 1
  23.         ]);
  24.     }
  25. }