migrations/Version20231227131150.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 Version20231227131150 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         $connection $this->connection;
  18.         //cheking if record already exist of user
  19.         $existingRecordOfUser $connection->fetchAssociative('SELECT * FROM `user` WHERE `username` = :username', ['username' => 'super_admin']);
  20.         
  21.         //if yes
  22.         if ($existingRecordOfUser) {
  23.             $userId $existingRecordOfUser['id'];
  24.         }
  25.           //cheking if record already exist of role
  26.         $existingRecordOfRole $connection->fetchAssociative('SELECT * FROM `roles` WHERE `role_slug` = :role_slug', ['role_slug' => 'super_admin']);
  27.         if ($existingRecordOfRole) {
  28.             $roleId $existingRecordOfRole['id'];
  29.         }
  30.          //if yes
  31.         $existingRecordOfUserRole $connection->fetchAssociative('SELECT * FROM `user_role` WHERE `user_id` = :user_id AND `role_id` = :role_id', ['user_id' => $userId'role_id' => $roleId]);
  32.         // 2. Insert into user_role if the user exists
  33.         if (!$existingRecordOfUserRole) {
  34.             // Insert into user_role
  35.             $this->addSql('INSERT INTO `user_role` (`user_id`, `role_id`) VALUES (:user_id, :role_id)', ['user_id' => $userId'role_id' => $roleId]);
  36.         }
  37.     }
  38.     public function down(Schema $schema): void
  39.     {
  40.     }
  41. }