migrations/Version20240405074501.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 Version20240405074501 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $this->addSql('INSERT INTO utilisateur (email, roles, password, notification, telephone, nom, prenom, couleur, hide_account, entreprise_id)
  18.                        VALUES (
  19.                            \'ebala+master@lk1.fr\',
  20.                            \'["ROLE_MASTER"]\',
  21.                            \'$2y$13$Nls2/A0j1QLu8jOSbf.V9ubrKKE3hmjpyNpSQlZdAlGscwiEonazq\',
  22.                            0,
  23.                            \'0616982376\',
  24.                            \'BALA\',
  25.                            \'EliseMASTER\',
  26.                            \'#FF0000\',
  27.                            0,
  28.                            1
  29.                        )');
  30.     }
  31.     public function down(Schema $schema): void
  32.     {
  33.         // this down() migration is auto-generated, please modify it to your needs
  34.     }
  35. }