migrations/Version20221218133028.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 Version20221218133028 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 TEMPORARY TABLE __temp__blog_post AS SELECT id, title, slug, created_at, updated_at, poster, page_title, meta_description, published FROM blog_post');
  19.         $this->addSql('DROP TABLE blog_post');
  20.         $this->addSql('CREATE TABLE blog_post (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, title VARCHAR(255) NOT NULL, slug VARCHAR(255) NOT NULL, created_at DATETIME NOT NULL --(DC2Type:datetime_immutable)
  21.         , updated_at DATETIME DEFAULT NULL --(DC2Type:datetime_immutable)
  22.         , poster VARCHAR(255) DEFAULT NULL, page_title VARCHAR(255) DEFAULT \'\' NOT NULL, meta_description VARCHAR(255) DEFAULT \'\' NOT NULL, published BOOLEAN NOT NULL, description CLOB DEFAULT NULL, short_description CLOB DEFAULT NULL, button_text VARCHAR(255) DEFAULT NULL, button_link VARCHAR(255) DEFAULT NULL)');
  23.         $this->addSql('INSERT INTO blog_post (id, title, slug, created_at, updated_at, poster, page_title, meta_description, published) SELECT id, title, slug, created_at, updated_at, poster, page_title, meta_description, published FROM __temp__blog_post');
  24.         $this->addSql('DROP TABLE __temp__blog_post');
  25.         $this->addSql('CREATE UNIQUE INDEX UNIQ_BA5AE01D989D9B62 ON blog_post (slug)');
  26.     }
  27.     public function down(Schema $schema): void
  28.     {
  29.         // this down() migration is auto-generated, please modify it to your needs
  30.         $this->addSql('CREATE TEMPORARY TABLE __temp__blog_post AS SELECT id, title, slug, created_at, updated_at, poster, published, page_title, meta_description FROM blog_post');
  31.         $this->addSql('DROP TABLE blog_post');
  32.         $this->addSql('CREATE TABLE blog_post (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, title VARCHAR(255) NOT NULL, slug VARCHAR(255) NOT NULL, created_at DATETIME NOT NULL --(DC2Type:datetime_immutable)
  33.         , updated_at DATETIME DEFAULT NULL --(DC2Type:datetime_immutable)
  34.         , poster VARCHAR(255) DEFAULT NULL, published BOOLEAN DEFAULT 0 NOT NULL, page_title VARCHAR(255) DEFAULT \'\' NOT NULL, meta_description VARCHAR(255) DEFAULT \'\' NOT NULL)');
  35.         $this->addSql('INSERT INTO blog_post (id, title, slug, created_at, updated_at, poster, published, page_title, meta_description) SELECT id, title, slug, created_at, updated_at, poster, published, page_title, meta_description FROM __temp__blog_post');
  36.         $this->addSql('DROP TABLE __temp__blog_post');
  37.         $this->addSql('CREATE UNIQUE INDEX UNIQ_BA5AE01D989D9B62 ON blog_post (slug)');
  38.     }
  39. }