Migration

This commit is contained in:
Kouril42 2023-02-22 10:38:49 +01:00
parent 1e67114d82
commit b958948e35

View File

@ -0,0 +1,34 @@
<?php
//
// IDK if it's there that I have to modify anymway, we changed connectedPlaces-connection to ConnectedPlaces
//
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 Version20230222093423 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
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE SCHEMA public');
}
}