<?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 Version20240405074501 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql('INSERT INTO utilisateur (email, roles, password, notification, telephone, nom, prenom, couleur, hide_account, entreprise_id)
VALUES (
\'ebala+master@lk1.fr\',
\'["ROLE_MASTER"]\',
\'$2y$13$Nls2/A0j1QLu8jOSbf.V9ubrKKE3hmjpyNpSQlZdAlGscwiEonazq\',
0,
\'0616982376\',
\'BALA\',
\'EliseMASTER\',
\'#FF0000\',
0,
1
)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}