migrations/Version20241017092605.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20241017092605 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('CREATE TABLE abap_notification_log (id UUID NOT NULL, content VARCHAR(255) DEFAULT NULL, subject VARCHAR(255) DEFAULT NULL, created_at TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL, updated_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, PRIMARY KEY(id))');
  19.         $this->addSql('COMMENT ON COLUMN abap_notification_log.id IS \'(DC2Type:uuid)\'');
  20.         $this->addSql('CREATE TABLE abap_notification_template (id UUID NOT NULL, content VARCHAR(255) DEFAULT NULL, subject VARCHAR(255) DEFAULT NULL, title VARCHAR(255) DEFAULT NULL, type VARCHAR(255) DEFAULT NULL, created_at TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL, updated_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL, PRIMARY KEY(id))');
  21.         $this->addSql('COMMENT ON COLUMN abap_notification_template.id IS \'(DC2Type:uuid)\'');
  22.         $this->addSql('ALTER TABLE notification_template DROP CONSTRAINT fk_c2702726de12ab56');
  23.         $this->addSql('ALTER TABLE notification_template DROP CONSTRAINT fk_c270272616fe72e1');
  24.         $this->addSql('DROP TABLE notification_template');
  25.     }
  26.     public function down(Schema $schema): void
  27.     {
  28.         // this down() migration is auto-generated, please modify it to your needs
  29.         $this->addSql('CREATE TABLE notification_template (id UUID NOT NULL, created_by UUID DEFAULT NULL, updated_by UUID DEFAULT NULL, title VARCHAR(255) DEFAULT NULL, code VARCHAR(255) DEFAULT NULL, content TEXT DEFAULT 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))');
  30.         $this->addSql('CREATE INDEX idx_c270272616fe72e1 ON notification_template (updated_by)');
  31.         $this->addSql('CREATE INDEX idx_c2702726de12ab56 ON notification_template (created_by)');
  32.         $this->addSql('COMMENT ON COLUMN notification_template.id IS \'(DC2Type:uuid)\'');
  33.         $this->addSql('COMMENT ON COLUMN notification_template.created_by IS \'(DC2Type:uuid)\'');
  34.         $this->addSql('COMMENT ON COLUMN notification_template.updated_by IS \'(DC2Type:uuid)\'');
  35.         $this->addSql('ALTER TABLE notification_template ADD CONSTRAINT fk_c2702726de12ab56 FOREIGN KEY (created_by) REFERENCES "user" (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
  36.         $this->addSql('ALTER TABLE notification_template ADD CONSTRAINT fk_c270272616fe72e1 FOREIGN KEY (updated_by) REFERENCES "user" (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
  37.         $this->addSql('DROP TABLE abap_notification_log');
  38.         $this->addSql('DROP TABLE abap_notification_template');
  39.     }
  40. }