<?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 Version20240429142735 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 TABLE district (id INT AUTO_INCREMENT NOT NULL, province_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, active TINYINT(1) DEFAULT 1, position INT DEFAULT 1 NOT NULL, slug VARCHAR(255) NOT NULL, created_at DATETIME DEFAULT NULL, modified_at DATETIME DEFAULT NULL, created_user INT DEFAULT NULL, modified_user INT DEFAULT NULL, UNIQUE INDEX UNIQ_31C15487989D9B62 (slug), INDEX IDX_31C15487E946114A (province_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('CREATE TABLE province (id INT AUTO_INCREMENT NOT NULL, deparment_id INT DEFAULT NULL, title VARCHAR(255) NOT NULL, active TINYINT(1) DEFAULT 1, position INT DEFAULT 1 NOT NULL, slug VARCHAR(255) NOT NULL, created_at DATETIME DEFAULT NULL, modified_at DATETIME DEFAULT NULL, created_user INT DEFAULT NULL, modified_user INT DEFAULT NULL, UNIQUE INDEX UNIQ_4ADAD40B989D9B62 (slug), INDEX IDX_4ADAD40BCB217CF9 (deparment_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE district ADD CONSTRAINT FK_31C15487E946114A FOREIGN KEY (province_id) REFERENCES province (id) ON DELETE SET NULL');
$this->addSql('ALTER TABLE province ADD CONSTRAINT FK_4ADAD40BCB217CF9 FOREIGN KEY (deparment_id) REFERENCES department (id) ON DELETE SET NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE district DROP FOREIGN KEY FK_31C15487E946114A');
$this->addSql('ALTER TABLE province DROP FOREIGN KEY FK_4ADAD40BCB217CF9');
$this->addSql('DROP TABLE district');
$this->addSql('DROP TABLE province');
}
}