doctrine_migrations:
storage:
# Default (SQL table) metadata storage configuration
table_storage:
table_name: 'test_project.doctrine_migration_versions'
schema_filter: '~^(test_project.shop_|test_project.doctrine_migration_versions)~'
final class Version20240207122858 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 test_project.shop_book_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('DROP SEQUENCE test_project.shop_book_id_seq CASCADE');
}
}