migrations/Version20230315222527.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 Version20230315222527 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.         $this->addSql('ALTER TABLE oauth_access_token DROP FOREIGN KEY FK_F7FA86A41AD5CDBF');
  19.         $this->addSql('DROP INDEX UNIQ_F7FA86A41AD5CDBF ON oauth_access_token');
  20.         $this->addSql('ALTER TABLE oauth_access_token DROP cart_id');
  21.         $this->addSql('ALTER TABLE oauth_client DROP FOREIGN KEY FK_AD73274D9DEA1320');
  22.         $this->addSql('ALTER TABLE oauth_client ADD CONSTRAINT FK_AD73274D9DEA1320 FOREIGN KEY (application_client_id) REFERENCES client (id)');
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         // this down() migration is auto-generated, please modify it to your needs
  27.         $this->addSql('ALTER TABLE oauth_access_token ADD cart_id INT DEFAULT NULL');
  28.         $this->addSql('ALTER TABLE oauth_access_token ADD CONSTRAINT FK_F7FA86A41AD5CDBF FOREIGN KEY (cart_id) REFERENCES cart (id)');
  29.         $this->addSql('CREATE UNIQUE INDEX UNIQ_F7FA86A41AD5CDBF ON oauth_access_token (cart_id)');
  30.         $this->addSql('ALTER TABLE oauth_client DROP FOREIGN KEY FK_AD73274D9DEA1320');
  31.         $this->addSql('ALTER TABLE oauth_client ADD CONSTRAINT FK_AD73274D9DEA1320 FOREIGN KEY (application_client_id) REFERENCES client (id) ON DELETE CASCADE');
  32.     }
  33. }