<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20210810122813 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$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');
$this->addSql('ALTER TABLE shop_order_product_consommation ADD CONSTRAINT FK_684FDD10D7039CBE FOREIGN KEY (shop_order_product_id) REFERENCES shop_order_product (id)');
$this->addSql('ALTER TABLE shop_order_product_consommation ADD CONSTRAINT FK_684FDD10A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE shop_order_product_consommation ADD CONSTRAINT FK_684FDD10BCF5E72D FOREIGN KEY (categorie_id) REFERENCES shop_categorie (id)');
$this->addSql('DROP TABLE shop_order_product_credit');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$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 = \'\' ');
$this->addSql('ALTER TABLE shop_order_product_credit ADD CONSTRAINT FK_F530F3D7A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE shop_order_product_credit ADD CONSTRAINT FK_F530F3D7BCF5E72D FOREIGN KEY (categorie_id) REFERENCES shop_categorie (id)');
$this->addSql('ALTER TABLE shop_order_product_credit ADD CONSTRAINT FK_F530F3D7D7039CBE FOREIGN KEY (shop_order_product_id) REFERENCES shop_order_product (id)');
$this->addSql('DROP TABLE shop_order_product_consommation');
}
}