<?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 Version20231116145500 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 `select_values` (`id`, `select_key`, `value`, `order_number`) VALUES (NULL, 'antiTheftMarking', 'Auvray Security (ICA Bike)', '1'), (NULL, 'antiTheftMarking', 'Bicycode', '2'), (NULL, 'antiTheftMarking', 'Décathlon', '3'), (NULL, 'antiTheftMarking', 'Manufacture Française du Cycle (MFC)', '4'), (NULL, 'antiTheftMarking', 'Paravol', '5'), (NULL, 'antiTheftMarking', 'Recobike', '6'), (NULL, 'antiTheftMarking', 'Starway', '7');");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}