<?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 Version20230320220247 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 delivery_man ADD last_position_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE delivery_man ADD CONSTRAINT FK_4E0DFC7C9DB2514A FOREIGN KEY (last_position_id) REFERENCES tracking (id)');
$this->addSql('CREATE UNIQUE INDEX UNIQ_4E0DFC7C9DB2514A ON delivery_man (last_position_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE delivery_man DROP FOREIGN KEY FK_4E0DFC7C9DB2514A');
$this->addSql('DROP INDEX UNIQ_4E0DFC7C9DB2514A ON delivery_man');
$this->addSql('ALTER TABLE delivery_man DROP last_position_id');
}
}