migrations/Version20241209115327.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 Version20241209115327 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 suppliers__brands_discount (id INT AUTO_INCREMENT NOT NULL, supplier_id INT NOT NULL, brand_id INT NOT NULL, discount INT DEFAULT 0 NOT NULL, updated DATETIME DEFAULT NULL, INDEX IDX_A81356162ADD6D8C (supplier_id), INDEX IDX_A813561644F5D008 (brand_id), UNIQUE INDEX UNIQ_A81356162ADD6D8C44F5D008 (supplier_id, brand_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE suppliers__markups (id INT AUTO_INCREMENT NOT NULL, supplier_id INT NOT NULL, markup INT DEFAULT 0 NOT NULL, updated DATETIME DEFAULT NULL, UNIQUE INDEX UNIQ_FA42635F2ADD6D8C (supplier_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE suppliers__markups_ranges (id INT AUTO_INCREMENT NOT NULL, supplier_id INT NOT NULL, markup INT DEFAULT 0 NOT NULL, range_from INT DEFAULT 0 NOT NULL, range_to INT DEFAULT 0 NOT NULL, updated DATETIME DEFAULT NULL, INDEX IDX_7DBB4FA62ADD6D8C (supplier_id), UNIQUE INDEX UNIQ_7DBB4FA62ADD6D8CAB7AD049423C6525 (supplier_id, range_from, range_to), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('ALTER TABLE suppliers__brands_discount ADD CONSTRAINT FK_A81356162ADD6D8C FOREIGN KEY (supplier_id) REFERENCES suppliers__suppliers (id) ON DELETE CASCADE');
  22.         $this->addSql('ALTER TABLE suppliers__brands_discount ADD CONSTRAINT FK_A813561644F5D008 FOREIGN KEY (brand_id) REFERENCES brands__brands (id) ON DELETE CASCADE');
  23.         $this->addSql('ALTER TABLE suppliers__markups ADD CONSTRAINT FK_FA42635F2ADD6D8C FOREIGN KEY (supplier_id) REFERENCES suppliers__suppliers (id) ON DELETE CASCADE');
  24.         $this->addSql('ALTER TABLE suppliers__markups_ranges ADD CONSTRAINT FK_7DBB4FA62ADD6D8C FOREIGN KEY (supplier_id) REFERENCES suppliers__suppliers (id) ON DELETE CASCADE');
  25.     }
  26.     public function down(Schema $schema): void
  27.     {
  28.         // this down() migration is auto-generated, please modify it to your needs
  29.         $this->addSql('ALTER TABLE suppliers__brands_discount DROP FOREIGN KEY FK_A81356162ADD6D8C');
  30.         $this->addSql('ALTER TABLE suppliers__brands_discount DROP FOREIGN KEY FK_A813561644F5D008');
  31.         $this->addSql('ALTER TABLE suppliers__markups DROP FOREIGN KEY FK_FA42635F2ADD6D8C');
  32.         $this->addSql('ALTER TABLE suppliers__markups_ranges DROP FOREIGN KEY FK_7DBB4FA62ADD6D8C');
  33.         $this->addSql('DROP TABLE suppliers__brands_discount');
  34.         $this->addSql('DROP TABLE suppliers__markups');
  35.         $this->addSql('DROP TABLE suppliers__markups_ranges');
  36.     }
  37. }