vendor/bluue/planning-bundle/migrations/Version20230524132703.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace PlanningBundleMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20230524132703 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('ALTER TABLE planning_bundle__slot ADD is_holiday TINYINT(1) NOT NULL');
  11.     }
  12.     public function down(Schema $schema): void
  13.     {
  14.         $this->addSql('ALTER TABLE planning_bundle__slot DROP is_holiday');
  15.     }
  16.     public function postUp(Schema $schema): void
  17.     {
  18.         parent::postUp($schema);
  19.         shell_exec('bin/console do:fi:lo --append --group=planning_bundle_public_holidays');
  20.         $this->connection->insert('cron_job', [
  21.             'name' => 'planning-google-channel-refresh',
  22.             'command' => 'bluue-bundle:planning:google-channel-refresh',
  23.             'schedule' => '0 2 * * *',
  24.             'description' => '',
  25.             'enabled' => 1
  26.         ]);
  27.     }
  28. }