MyComments/migrations/Version20230909100148.php
Skylar Sadlier 3ed53ac05e - Basic HTML templates
- Created entities & new migration
- Added packages symfony/stimulus-bundle & symfony/webpack-encore-bundle
2024-02-12 19:51:33 -07:00

32 lines
879 B
PHP

<?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 Version20230909100148 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('ALTER TABLE user ADD display_name VARCHAR(64) NOT NULL, ADD created_at DATETIME NOT NULL, ADD updated_at DATETIME DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE `user` DROP display_name, DROP created_at, DROP updated_at');
}
}