<?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 Version20210801172225 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 cbrcagcadocument (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) NOT NULL, document1 VARCHAR(255) DEFAULT NULL, updated_at DATETIME DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('CREATE TABLE cbrcreset_password (id INT AUTO_INCREMENT NOT NULL, user_id INT NOT NULL, token VARCHAR(255) NOT NULL COLLATE `latin1_bin`, validitydate DATETIME NOT NULL, UNIQUE INDEX UNIQ_AE29E1745F37A13B (token), UNIQUE INDEX UNIQ_AE29E174A76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE cbrcreset_password ADD CONSTRAINT FK_AE29E174A76ED395 FOREIGN KEY (user_id) REFERENCES cbrcuser (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE cbrcagcadocument');
$this->addSql('DROP TABLE cbrcreset_password');
}
}