<?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 Version20250419071228 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 report_category (id UUID NOT NULL, created_by UUID DEFAULT NULL, updated_by UUID DEFAULT NULL, name VARCHAR(255) NOT NULL, map BOOLEAN NOT NULL, description_required BOOLEAN NOT NULL, photos BOOLEAN NOT NULL, photo_required BOOLEAN NOT NULL, created_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, updated_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, deleted_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, PRIMARY KEY(id))');
$this->addSql('CREATE UNIQUE INDEX UNIQ_62C80BC5E237E06 ON report_category (name)');
$this->addSql('CREATE INDEX IDX_62C80BCDE12AB56 ON report_category (created_by)');
$this->addSql('CREATE INDEX IDX_62C80BC16FE72E1 ON report_category (updated_by)');
$this->addSql('COMMENT ON COLUMN report_category.id IS \'(DC2Type:uuid)\'');
$this->addSql('COMMENT ON COLUMN report_category.created_by IS \'(DC2Type:uuid)\'');
$this->addSql('COMMENT ON COLUMN report_category.updated_by IS \'(DC2Type:uuid)\'');
$this->addSql('ALTER TABLE report_category ADD CONSTRAINT FK_62C80BCDE12AB56 FOREIGN KEY (created_by) REFERENCES "user" (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
$this->addSql('ALTER TABLE report_category ADD CONSTRAINT FK_62C80BC16FE72E1 FOREIGN KEY (updated_by) REFERENCES "user" (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE SCHEMA public');
$this->addSql('ALTER TABLE report_category DROP CONSTRAINT FK_62C80BCDE12AB56');
$this->addSql('ALTER TABLE report_category DROP CONSTRAINT FK_62C80BC16FE72E1');
$this->addSql('DROP TABLE report_category');
}
}