migrations/Version20211115111452.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 Version20211115111452 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('ALTER TABLE module_page ADD COLUMN updated_at DATETIME DEFAULT NULL');
  19.     }
  20.     public function down(Schema $schema): void
  21.     {
  22.         // this down() migration is auto-generated, please modify it to your needs
  23.         $this->addSql('DROP INDEX UNIQ_AE36F32C989D9B62');
  24.         $this->addSql('CREATE TEMPORARY TABLE __temp__module_page AS SELECT id, slug, title, description, capability_title, capability_text, configure_title, configure_text, tariffs, image, feature_text, feature_image, created_at, page_title, meta_description FROM module_page');
  25.         $this->addSql('DROP TABLE module_page');
  26.         $this->addSql('CREATE TABLE module_page (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, slug VARCHAR(255) NOT NULL, title VARCHAR(255) NOT NULL, description CLOB NOT NULL, capability_title VARCHAR(255) DEFAULT NULL, capability_text CLOB DEFAULT NULL, configure_title VARCHAR(255) DEFAULT NULL, configure_text CLOB DEFAULT NULL, tariffs CLOB NOT NULL --(DC2Type:json)
  27.         , image VARCHAR(255) DEFAULT NULL, feature_text CLOB DEFAULT NULL, feature_image VARCHAR(255) DEFAULT NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL --(DC2Type:datetime_immutable)
  28.         , page_title VARCHAR(255) DEFAULT \'\' NOT NULL, meta_description VARCHAR(255) DEFAULT \'\' NOT NULL)');
  29.         $this->addSql('INSERT INTO module_page (id, slug, title, description, capability_title, capability_text, configure_title, configure_text, tariffs, image, feature_text, feature_image, created_at, page_title, meta_description) SELECT id, slug, title, description, capability_title, capability_text, configure_title, configure_text, tariffs, image, feature_text, feature_image, created_at, page_title, meta_description FROM __temp__module_page');
  30.         $this->addSql('DROP TABLE __temp__module_page');
  31.         $this->addSql('CREATE UNIQUE INDEX UNIQ_AE36F32C989D9B62 ON module_page (slug)');
  32.     }
  33. }