feat: add a remarks field on entities

This commit is contained in:
Maël Gangloff
2024-12-28 19:26:25 +01:00
parent c3c7de1902
commit ee4d117834
3 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?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 Version20241228180950 extends AbstractMigration
{
public function getDescription(): string
{
return 'add remarks field on entities';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE entity ADD remarks JSONB DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE entity DROP remarks');
}
}