<?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 Version20230217182732 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 transcode_field_type (libelle, code, enable) VALUE ('code_compte_client', 'CODE_COMPTE_CLIENT', 1)");
$this->addSql("INSERT INTO transcode_field_type (libelle, code, enable) VALUE ('code_service_client', 'CODE_SERVICE_CLIENT', 1)");
$this->addSql("INSERT INTO transcode_field_type (libelle, code, enable) VALUE ('code_hub', 'CODE_HUB', 1)");
$this->addSql("INSERT INTO transcode_field_type (libelle, code, enable) VALUE ('code_traction', 'CODE_TRACTION', 1)");
$this->addSql("INSERT INTO transcode_field_type (libelle, code, enable) VALUE ('code_destinataire_remarquable', 'CODE_DESTINATAIRE_REMARQUABLE', 1)");
$this->addSql("INSERT INTO referentiel_categorie (libelle, code, enable) VALUE ('SERVICE CLIENT', 'SERVICE_CLIENT', 1)");
$this->addSql("INSERT INTO referentiel_categorie (libelle, code, enable) VALUE ('CLIENT', 'CLIENT', 1)");
$this->addSql("INSERT INTO referentiel_categorie (libelle, code, enable) VALUE ('COMPTE CLIENT', 'COMPTE_CLIENT', 1)");
$this->addSql("INSERT INTO referentiel_categorie (libelle, code, enable) VALUE ('AGENCE', 'AGENCE', 1)");
$this->addSql("INSERT INTO referentiel_categorie (libelle, code, enable) VALUE ('DESTINATAIRE REMARQUABLE', 'DESTINATAIRE_REMARQUABLE', 1)");
$this->addSql("INSERT INTO referentiel_categorie (libelle, code, enable) VALUE ('TRACTION', 'TRACTION', 1)");
$this->addSql("INSERT INTO referentiel_categorie (libelle, code, enable) VALUE ('HUB', 'HUB', 1)");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}