migrations/Version20240101044617.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 Version20240101044617 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.         
  19.         $this->addSql('ALTER TABLE education_sponsor_details ADD gixli_username VARCHAR(255) DEFAULT NULL, ADD business_introduction LONGTEXT DEFAULT NULL, ADD facebook_profile VARCHAR(255) DEFAULT NULL, ADD x_profile VARCHAR(255) DEFAULT NULL, ADD youtube_url VARCHAR(255) DEFAULT NULL, ADD pinterest_profile VARCHAR(255) DEFAULT NULL, ADD instagram_profile VARCHAR(255) DEFAULT NULL, DROP sponsor_name, DROP sponsor_website, DROP facebook_link, DROP twitter_link, DROP youtube_link, DROP pinterest_link, DROP instagram_link');
  20.         
  21.     }
  22.     public function down(Schema $schema): void
  23.     {
  24.         // this down() migration is auto-generated, please modify it to your needs
  25.         $this->addSql('ALTER TABLE education_sponsor_details ADD sponsor_name VARCHAR(255) DEFAULT NULL, ADD sponsor_website VARCHAR(255) DEFAULT NULL, ADD facebook_link VARCHAR(255) DEFAULT NULL, ADD twitter_link VARCHAR(255) DEFAULT NULL, ADD youtube_link VARCHAR(255) DEFAULT NULL, ADD pinterest_link VARCHAR(255) DEFAULT NULL, ADD instagram_link VARCHAR(255) DEFAULT NULL, DROP gixli_username, DROP business_introduction, DROP facebook_profile, DROP x_profile, DROP youtube_url, DROP pinterest_profile, DROP instagram_profile');
  26.         
  27.     }
  28. }