<?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 Version20221219085426 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 claim_department (id INT AUTO_INCREMENT NOT 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_1061ED36989D9B62 (slug), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('CREATE TABLE claim_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_F031B2C3989D9B62 (slug), INDEX IDX_F031B2C3E946114A (province_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('CREATE TABLE claim_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_8B2A324F989D9B62 (slug), INDEX IDX_8B2A324FCB217CF9 (deparment_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE claim_district ADD CONSTRAINT FK_F031B2C3E946114A FOREIGN KEY (province_id) REFERENCES claim_province (id) ON DELETE SET NULL');
$this->addSql('ALTER TABLE claim_province ADD CONSTRAINT FK_8B2A324FCB217CF9 FOREIGN KEY (deparment_id) REFERENCES claim_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 claim_province DROP FOREIGN KEY FK_8B2A324FCB217CF9');
$this->addSql('ALTER TABLE claim_district DROP FOREIGN KEY FK_F031B2C3E946114A');
$this->addSql('DROP TABLE claim_department');
$this->addSql('DROP TABLE claim_district');
$this->addSql('DROP TABLE claim_province');
}
}