migrations/Version20210728073612.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 Version20210728073612 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('CREATE TABLE shop_panier (id INT AUTO_INCREMENT NOT NULL, user_id INT NOT NULL, produit_id INT NOT NULL, unit INT NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, INDEX IDX_A16E2B70A76ED395 (user_id), INDEX IDX_A16E2B70F347EFB (produit_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE shop_panier ADD CONSTRAINT FK_A16E2B70A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
  20.         $this->addSql('ALTER TABLE shop_panier ADD CONSTRAINT FK_A16E2B70F347EFB FOREIGN KEY (produit_id) REFERENCES shop_produit (id)');
  21.         $this->addSql('DROP TABLE shop_commande');
  22.     }
  23.     public function down(Schema $schema): void
  24.     {
  25.         // this down() migration is auto-generated, please modify it to your needs
  26.         $this->addSql('CREATE TABLE shop_commande (id INT AUTO_INCREMENT NOT NULL, user_id INT NOT NULL, produit_id INT NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, INDEX IDX_B5525CEBF347EFB (produit_id), INDEX IDX_B5525CEBA76ED395 (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
  27.         $this->addSql('ALTER TABLE shop_commande ADD CONSTRAINT FK_B5525CEBA76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
  28.         $this->addSql('ALTER TABLE shop_commande ADD CONSTRAINT FK_B5525CEBF347EFB FOREIGN KEY (produit_id) REFERENCES shop_produit (id)');
  29.         $this->addSql('DROP TABLE shop_panier');
  30.     }
  31. }