<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20230320195748 extends AbstractMigration
{
public function getDescription(): string
{
return 'Zmiany projektowe w zamówieniu i timetable';
}
public function up(Schema $schema): void
{
$this->addSql('ALTER TABLE `order` ADD start_bus_stop_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE `order` ADD CONSTRAINT FK_F5299398C86E0744 FOREIGN KEY (start_bus_stop_id) REFERENCES bus_stop (id)');
$this->addSql('CREATE INDEX IDX_F5299398C86E0744 ON `order` (start_bus_stop_id)');
$this->addSql('ALTER TABLE timetable ADD course_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE timetable ADD CONSTRAINT FK_6B1F670591CC992 FOREIGN KEY (course_id) REFERENCES course (id)');
$this->addSql('CREATE INDEX IDX_6B1F670591CC992 ON timetable (course_id)');
$this->addSql('ALTER TABLE `order` CHANGE payment_method payment_method VARCHAR(255) DEFAULT NULL');
$this->addSql('ALTER TABLE `order` CHANGE user_id user_id INT(11) DEFAULT NULL');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE `order` DROP FOREIGN KEY FK_F5299398C86E0744');
$this->addSql('DROP INDEX IDX_F5299398C86E0744 ON `order`');
$this->addSql('ALTER TABLE `order` DROP start_bus_stop_id');
$this->addSql('ALTER TABLE timetable DROP FOREIGN KEY FK_6B1F670591CC992');
$this->addSql('DROP INDEX IDX_6B1F670591CC992 ON timetable');
$this->addSql('ALTER TABLE timetable DROP course_id');
$this->addSql('ALTER TABLE `order` CHANGE payment_method payment_method VARCHAR(255) NOT NULL');
$this->addSql('ALTER TABLE `order` CHANGE user_id user_id INT(11) NOT NULL');
}
}