migrations/Version20150715083520.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\Migrations\AbstractMigration;
  5. use Doctrine\DBAL\Schema\Schema;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. class Version20150715083520 extends AbstractMigration
  10. {
  11.     /**
  12.      * @param Schema $schema
  13.      */
  14.     public function up(Schema $schema): void
  15.     {
  16.         // this up() migration is auto-generated, please modify it to your needs
  17.         $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql''Migration can only be executed safely on \'mysql\'.');
  18.         $this->addSql('ALTER TABLE user_hoard CHANGE comment comment LONGTEXT DEFAULT NULL');
  19.         $this->addSql('ALTER TABLE coin_condition CHANGE comment comment LONGTEXT DEFAULT NULL');
  20.         $this->addSql('ALTER TABLE image ADD comment LONGTEXT DEFAULT NULL');
  21.         $this->addSql('ALTER TABLE country CHANGE comment comment LONGTEXT DEFAULT NULL');
  22.         $this->addSql('ALTER TABLE discovery_method CHANGE comment comment LONGTEXT DEFAULT NULL');
  23.         $this->addSql('ALTER TABLE coin_reference CHANGE comment comment LONGTEXT DEFAULT NULL');
  24.         $this->addSql('ALTER TABLE user_country CHANGE comment comment LONGTEXT DEFAULT NULL');
  25.         $this->addSql('ALTER TABLE rating CHANGE comment comment LONGTEXT DEFAULT NULL');
  26.         $this->addSql('ALTER TABLE material CHANGE comment comment LONGTEXT DEFAULT NULL');
  27.         $this->addSql('ALTER TABLE hide_what CHANGE comment comment LONGTEXT DEFAULT NULL');
  28.         $this->addSql('ALTER TABLE object_reference CHANGE comment comment LONGTEXT DEFAULT NULL');
  29.         $this->addSql('ALTER TABLE find_spot_location_detail ADD comment LONGTEXT DEFAULT NULL');
  30.         $this->addSql('ALTER TABLE status CHANGE comment comment LONGTEXT DEFAULT NULL');
  31.         $this->addSql('ALTER TABLE hide_from CHANGE comment comment LONGTEXT DEFAULT NULL');
  32.     }
  33.     /**
  34.      * @param Schema $schema
  35.      */
  36.     public function down(Schema $schema): void
  37.     {
  38.         // this down() migration is auto-generated, please modify it to your needs
  39.         $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'mysql''Migration can only be executed safely on \'mysql\'.');
  40.     }
  41. }