38 lines
1.4 KiB
PHP
38 lines
1.4 KiB
PHP
<?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 Version20240522221403 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 facility CHANGE available_hours available_hours JSON DEFAULT NULL COMMENT \'(DC2Type:json)\'');
|
|
$this->addSql('ALTER TABLE team ADD home_facility_id INT DEFAULT NULL');
|
|
$this->addSql('ALTER TABLE team ADD CONSTRAINT FK_HOME_FACILITY_ID FOREIGN KEY (home_facility_id) REFERENCES facility (id)');
|
|
$this->addSql('CREATE INDEX IDX_HOME_FACILITY ON team (home_facility_id)');
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
// this down() migration is auto-generated, please modify it to your needs
|
|
$this->addSql('ALTER TABLE facility CHANGE available_hours available_hours JSON DEFAULT NULL COMMENT \'(DC2Type:json)\'');
|
|
$this->addSql('ALTER TABLE team DROP FOREIGN KEY FK_C4E0A61F1ACD745D');
|
|
$this->addSql('DROP INDEX IDX_C4E0A61F1ACD745D ON team');
|
|
$this->addSql('ALTER TABLE team DROP home_facility_id');
|
|
}
|
|
}
|