migrations/Version20240212041102.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 Version20240212041102 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.         $recordsToInsert = [
  19.             [
  20.                 'name' => 'Ads on Gixli',
  21.                 'slug' => 'ads_on_gixli',
  22.                 'template' => 'ads_on_gixli',
  23.                 'class' => null,
  24.                 'content' => 'Ads on Gixli'// Your content here
  25.                 'seo_title' => null,
  26.                 'seo_meta_keyword' => null,
  27.                 'seo_description' => null,
  28.                 'is_active' => 1,
  29.                 'deleted' => 1,
  30.                 'created_at' => '2023-11-30 13:16:32',
  31.                 'updated_at' => '2023-11-30 13:17:37',
  32.                 'deleted_at' => null,
  33.             ], 
  34.             
  35.             
  36.         ];
  37.         foreach ($recordsToInsert as $record) {
  38.             $slugExists $this->connection->fetchAssociative(
  39.                 'SELECT id FROM cms_pages WHERE slug = :slug',
  40.                 ['slug' => $record['slug']]
  41.             );
  42.     
  43.             
  44.             if ($slugExists === false) {
  45.                 $this->addSql('INSERT INTO cms_pages (name, slug, template, class, content, seo_title, seo_meta_keyword, seo_description, is_active, deleted, created_at, updated_at, deleted_at) VALUES (:name, :slug, :template, :class, :content, :seo_title, :seo_meta_keyword, :seo_description, :is_active, :deleted, :created_at, :updated_at, :deleted_at)'$record);
  46.             }
  47.         }
  48.     }
  49.     public function down(Schema $schema): void
  50.     {
  51.         $recordsToRemove = [
  52.             [   
  53.                 'name' => 'Ads on Gixli',
  54.                 'slug' => 'ads_on_gixli',
  55.                 'template' => 'ads_on_gixli',
  56.                 'class' => null,
  57.                 'content' => '<h1 style=\"box-sizing: border-box; margin: 0px 0px 28px; font-weight: 700; line-height: 64px; font-size: 57px; padding: 0px; width: 800px; color: rgb(0, 0, 0); font-family: GeorgiaBold; outline: none !important;\">Login</h1>\r\n\r\n<p><span style=\"box-sizing: border-box; display: block; margin-bottom: 32px; color: rgb(99, 115, 129); font-size: 22px; line-height: 32px; font-family: Roboto, sans-serif; outline: none !important;\">Effective Date: January 1, 2022.</span></p>\r\n\r\n<p style=\"box-sizing: border-box; margin: 0px 0px 32px; padding: 0px; width: 800px; color: rgb(99, 115, 129); font-size: 22px; line-height: 32px; font-family: Roboto, sans-serif; outline: none !important;\">Login</p>'// Your content here
  58.                 'seo_title' => null,
  59.                 'seo_meta_keyword' => null,
  60.                 'seo_description' => null,
  61.                 'is_active' => 1,
  62.                 'deleted' => 1,
  63.                 'created_at' => '2023-11-30 13:16:32',
  64.                 'updated_at' => '2023-11-30 13:17:37',
  65.                 'deleted_at' => null,
  66.             ],
  67.            
  68.             
  69.         ];
  70.         foreach ($recordsToRemove as $slug) {
  71.             $this->addSql('DELETE FROM cms_pages WHERE slug = :slug', ['slug' => $slug]);
  72.         }       
  73.         
  74.     }
  75. }