<?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 Version20221109203649 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("INSERT INTO `order_status` (`id`, `name`,`id_punch`,`priority`) VALUES (NULL, 'Validée', NULL, 2), (NULL, 'Punch OK', NULL, 3), (NULL, 'En préparation', NULL, 4), (NULL, 'En cours de livraison', NULL, 5) , (NULL, 'Livrée', NULL, 6), (NULL, 'Payée', NULL, 7)");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}