vendor/bluue/adelya-bundle/migrations/Version20241010141039.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace AdelyaBundleMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20241010141039 extends AbstractMigration
  10. {
  11.     public function up(Schema $schema): void
  12.     {
  13.     }
  14.     public function down(Schema $schema): void
  15.     {
  16.     }
  17.     public function postUp(Schema $schema): void
  18.     {
  19.         parent::postUp($schema);
  20.         $this->connection->insert('cron_job', [
  21.             'name' => 'adelya-sync-customer',
  22.             'command' => 'bluue-bundle:adelya:sync-customer',
  23.             'schedule' => '*/15 * * * *',
  24.             'description' => '',
  25.             'enabled' => 0
  26.         ]);
  27.     }
  28. }