Spookie/migrations/Version20221030105205.php

32 lines
815 B
PHP
Raw Normal View History

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-11-01 14:57:36 +01:00
final class Version20221030105205 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-11-01 14:57:36 +01:00
$this->addSql('ALTER TABLE user ADD agreed_terms_at DATETIME NOT 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-11-01 14:57:36 +01:00
$this->addSql('ALTER TABLE user DROP agreed_terms_at');
2021-06-01 18:48:20 +02:00
}
}