2021-06-01 18:48:20 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace DoctrineMigrations;
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
|
|
use Doctrine\Migrations\AbstractMigration;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Auto-generated Migration: Please modify to your needs!
|
|
|
|
*/
|
2022-05-03 14:52:04 +02:00
|
|
|
final class Version20220425082917 extends AbstractMigration
|
2021-06-01 18:48:20 +02:00
|
|
|
{
|
|
|
|
public function getDescription(): string
|
|
|
|
{
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function up(Schema $schema): void
|
|
|
|
{
|
|
|
|
// this up() migration is auto-generated, please modify it to your needs
|
2022-05-03 14:52:04 +02:00
|
|
|
$this->addSql('ALTER TABLE user ADD created_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', ADD modified_at DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\'');
|
2021-06-01 18:48:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function down(Schema $schema): void
|
|
|
|
{
|
|
|
|
// this down() migration is auto-generated, please modify it to your needs
|
2022-05-03 14:52:04 +02:00
|
|
|
$this->addSql('ALTER TABLE `user` DROP created_at, DROP modified_at');
|
2021-06-01 18:48:20 +02:00
|
|
|
}
|
|
|
|
}
|