vendor/bluue/customers-bundle/migrations/Version20231116155642.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace CustomersBundleMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. final class Version20231116155642 extends AbstractMigration
  7. {
  8.     public function up(Schema $schema): void
  9.     {
  10.         $this->addSql('ALTER TABLE customers_bundle__customer ADD contact TINYINT(1) DEFAULT 0 NOT NULL, ADD job VARCHAR(255) DEFAULT NULL');
  11.         $this->addSql('CREATE INDEX contact ON customers_bundle__customer (contact)');
  12.         $this->addSql('CREATE INDEX job ON customers_bundle__customer (job)');
  13.     }
  14.     public function down(Schema $schema): void
  15.     {
  16.         $this->addSql('DROP INDEX contact ON customers_bundle__customer');
  17.         $this->addSql('DROP INDEX job ON customers_bundle__customer');
  18.         $this->addSql('ALTER TABLE customers_bundle__customer DROP contact, DROP job');
  19.     }
  20. }