migrations/Version20221013104710.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. final class Version20221013104710 extends AbstractMigration
  7. {
  8.     public function down(Schema $schema): void
  9.     {
  10.         $this->addSql('ALTER TABLE news_article CHANGE id id INT AUTO_INCREMENT NOT NULL');
  11.         $this->addSql('ALTER TABLE user CHANGE id id INT AUTO_INCREMENT NOT NULL');
  12.     }
  13.     public function getDescription(): string
  14.     {
  15.         return 'Change the id fields to unsigned.';
  16.     }
  17.     public function up(Schema $schema): void
  18.     {
  19.         $this->addSql('ALTER TABLE news_article CHANGE id id INT UNSIGNED AUTO_INCREMENT NOT NULL');
  20.         $this->addSql('ALTER TABLE user CHANGE id id INT UNSIGNED AUTO_INCREMENT NOT NULL');
  21.     }
  22. }