<?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 Version20200714230339 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('UPDATE users SET roles="ROLE_CALLCENTER" WHERE id=37122');
$this->addSql('UPDATE users SET roles="ROLE_CALLCENTER" WHERE id=28125');
$this->addSql('UPDATE users SET roles="ROLE_CALLCENTER" WHERE id=6951');
$this->addSql('UPDATE users SET roles="ROLE_HUERTA" WHERE id=398');
$this->addSql('UPDATE users SET is_active=0 WHERE id=8668');
$this->addSql('UPDATE employee SET firstName="Carlos", lastName="Marro" WHERE id=1');
$this->addSql('UPDATE employee SET firstName="Gustavo", lastName="Schelfhout" WHERE id=2');
$this->addSql('UPDATE employee SET firstName="Mabel", lastName="Perez" WHERE id=3');
$this->addSql('UPDATE employee SET firstName="Carlos", lastName="Delucchi" WHERE id=4');
$this->addSql('UPDATE employee SET firstName="Hector", lastName="Aberzano" WHERE id=5');
}
public function down(Schema $schema) : void
{
// this down() migration is auto-generated, please modify it to your needs
}
}