migrations/Version20210810122813.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 Version20210810122813 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_order_product_consommation (id INT AUTO_INCREMENT NOT NULL, shop_order_product_id INT NOT NULL, user_id INT NOT NULL, categorie_id INT NOT NULL, depense INT NOT NULL, date_debut DATE NOT NULL, date_fin DATE NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, INDEX IDX_684FDD10D7039CBE (shop_order_product_id), INDEX IDX_684FDD10A76ED395 (user_id), INDEX IDX_684FDD10BCF5E72D (categorie_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE shop_order_product_consommation ADD CONSTRAINT FK_684FDD10D7039CBE FOREIGN KEY (shop_order_product_id) REFERENCES shop_order_product (id)');
  20.         $this->addSql('ALTER TABLE shop_order_product_consommation ADD CONSTRAINT FK_684FDD10A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
  21.         $this->addSql('ALTER TABLE shop_order_product_consommation ADD CONSTRAINT FK_684FDD10BCF5E72D FOREIGN KEY (categorie_id) REFERENCES shop_categorie (id)');
  22.         $this->addSql('DROP TABLE shop_order_product_credit');
  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('CREATE TABLE shop_order_product_credit (id INT AUTO_INCREMENT NOT NULL, shop_order_product_id INT NOT NULL, user_id INT NOT NULL, categorie_id INT NOT NULL, depense INT NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, date_debut DATE NOT NULL, date_fin DATE NOT NULL, INDEX IDX_F530F3D7A76ED395 (user_id), INDEX IDX_F530F3D7D7039CBE (shop_order_product_id), INDEX IDX_F530F3D7BCF5E72D (categorie_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
  28.         $this->addSql('ALTER TABLE shop_order_product_credit ADD CONSTRAINT FK_F530F3D7A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
  29.         $this->addSql('ALTER TABLE shop_order_product_credit ADD CONSTRAINT FK_F530F3D7BCF5E72D FOREIGN KEY (categorie_id) REFERENCES shop_categorie (id)');
  30.         $this->addSql('ALTER TABLE shop_order_product_credit ADD CONSTRAINT FK_F530F3D7D7039CBE FOREIGN KEY (shop_order_product_id) REFERENCES shop_order_product (id)');
  31.         $this->addSql('DROP TABLE shop_order_product_consommation');
  32.     }
  33. }