migrations/Version20230818080838.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  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 Version20230818080838 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         $this->addSql("INSERT INTO `option` (`parameter_id`, `value`, `created`, `changed`) VALUES ((SELECT id from `parameter` WHERE code = 'foundry' limit 1), 'Slévárna 1', now(), now());");
  14.         $this->addSql("INSERT INTO `option` (`parameter_id`, `value`, `created`, `changed`) VALUES ((SELECT id from `parameter` WHERE code = 'foundry' limit 1), 'Slévárna 2', now(), now());");
  15.         $this->addSql("INSERT INTO `option` (`parameter_id`, `value`, `created`, `changed`) VALUES ((SELECT id from `parameter` WHERE code = 'foundry' limit 1), 'Slévárna 3', now(), now());");
  16.         return '';
  17.     }
  18.     public function up(Schema $schema): void
  19.     {
  20.         // this up() migration is auto-generated, please modify it to your needs
  21.         $this->addSql('ALTER TABLE product CHANGE tax tax DOUBLE PRECISION DEFAULT NULL');
  22.     }
  23.     public function down(Schema $schema): void
  24.     {
  25.         // this down() migration is auto-generated, please modify it to your needs
  26.         $this->addSql('ALTER TABLE product CHANGE tax tax DOUBLE PRECISION NOT NULL');
  27.     }
  28. }