<?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 Version20220716120521 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('CREATE TABLE user_client (id INT AUTO_INCREMENT NOT NULL, email VARCHAR(180) NOT NULL, roles JSON NOT NULL, name LONGTEXT DEFAULT NULL, document VARCHAR(15) DEFAULT NULL, phone VARCHAR(15) DEFAULT NULL, type VARCHAR(100) DEFAULT NULL, next_play_on DATE DEFAULT NULL, password VARCHAR(255) NOT NULL, UNIQUE INDEX UNIQ_A2161F68E7927C74 (email), UNIQUE INDEX UNIQ_A2161F68D8698A76 (document), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE user_client');
}
}