fix: make migration

This commit is contained in:
Maël Gangloff 2024-07-27 23:37:58 +02:00
parent e2913a9c9f
commit 4cd93ef45c
No known key found for this signature in database
GPG Key ID: 11FDC81C24A7F629

View File

@ -0,0 +1,36 @@
<?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 Version20240727213730 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 SEQUENCE domain_event_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
$this->addSql('CREATE SEQUENCE entity_event_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
$this->addSql('CREATE SEQUENCE "user_id_seq" INCREMENT BY 1 MINVALUE 1 START 1');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE SCHEMA public');
$this->addSql('DROP SEQUENCE domain_event_id_seq CASCADE');
$this->addSql('DROP SEQUENCE entity_event_id_seq CASCADE');
$this->addSql('DROP SEQUENCE "user_id_seq" CASCADE');
}
}