<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20240806092312 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE company ADD checkbox_enabled TINYINT(1) DEFAULT 0 NOT NULL, ADD checkbox_login LONGTEXT DEFAULT NULL, ADD checkbox_pass LONGTEXT DEFAULT NULL, ADD checkbox_secret LONGTEXT DEFAULT NULL');
$this->addSql("
INSERT INTO `cron_job` (`name`, `command`, `schedule`, `description`, `enabled`)
VALUES
('app:checkbox-shift-init', 'app:checkbox-shift-init','*/30 * * * *', 'Check shift on checkbox', 1);
");
$this->addSql("
INSERT INTO `cron_job` (`name`, `command`, `schedule`, `description`, `enabled`)
VALUES
('app:checkbox-shift-init --force', 'app:checkbox-shift-init --force','0 3 * * *', 'Check shift on checkbox with close old shift', 1);
");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE company DROP checkbox_enabled, DROP checkbox_login, DROP checkbox_pass, DROP checkbox_secret');
}
}