migrations/Version20231201105158.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 Version20231201105158 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 contractors__contractors (id INT AUTO_INCREMENT NOT NULL, created_at DATETIME NOT NULL, type VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, inn VARCHAR(255) DEFAULT NULL, kpp VARCHAR(255) DEFAULT NULL, INDEX IDX_ED2B1BB8E93323CB (inn), INDEX IDX_ED2B1BB88CDE5729 (type), UNIQUE INDEX UNIQ_ED2B1BB8E93323CBC4F9F519 (inn, kpp), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE invoices__invoices (id INT AUTO_INCREMENT NOT NULL, contractor_id INT NOT NULL, created_at DATETIME NOT NULL, confirmed_date DATETIME DEFAULT NULL, canceled_date DATETIME DEFAULT NULL, INDEX IDX_7C29A666B0265DC7 (contractor_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('CREATE TABLE invoices__invoices_products (id INT AUTO_INCREMENT NOT NULL, invoice_id INT NOT NULL, warehouse_id INT NOT NULL, product_id INT NOT NULL, created_at DATETIME NOT NULL, quantity INT NOT NULL, amount INT NOT NULL, INDEX IDX_F8E4B8EA2989F1FD (invoice_id), INDEX IDX_F8E4B8EA5080ECDE (warehouse_id), INDEX IDX_F8E4B8EA4584665A (product_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  21.         $this->addSql('CREATE TABLE products__items_transactions (id INT AUTO_INCREMENT NOT NULL, item_id INT NOT NULL, invoice_product_id INT DEFAULT NULL, created_at DATETIME NOT NULL, init_stock INT NOT NULL, amount INT NOT NULL, new_stock INT NOT NULL, reason VARCHAR(255) NOT NULL, INDEX IDX_D9EFCC63126F525E (item_id), INDEX IDX_D9EFCC63BC5816C4 (invoice_product_id), UNIQUE INDEX UNIQ_D9EFCC63BC5816C43BB8880C (invoice_product_id, reason), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  22.         $this->addSql('CREATE TABLE warehouses__warehouses (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) NOT NULL, alias VARCHAR(255) NOT NULL, UNIQUE INDEX UNIQ_9B46CE6DE16C6B94 (alias), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  23.         $this->addSql('ALTER TABLE invoices__invoices ADD CONSTRAINT FK_7C29A666B0265DC7 FOREIGN KEY (contractor_id) REFERENCES contractors__contractors (id)');
  24.         $this->addSql('ALTER TABLE invoices__invoices_products ADD CONSTRAINT FK_F8E4B8EA2989F1FD FOREIGN KEY (invoice_id) REFERENCES invoices__invoices (id)');
  25.         $this->addSql('ALTER TABLE invoices__invoices_products ADD CONSTRAINT FK_F8E4B8EA5080ECDE FOREIGN KEY (warehouse_id) REFERENCES warehouses__warehouses (id)');
  26.         $this->addSql('ALTER TABLE invoices__invoices_products ADD CONSTRAINT FK_F8E4B8EA4584665A FOREIGN KEY (product_id) REFERENCES products__products (id)');
  27.         $this->addSql('ALTER TABLE products__items_transactions ADD CONSTRAINT FK_D9EFCC63126F525E FOREIGN KEY (item_id) REFERENCES products__items (id) ON DELETE CASCADE');
  28.         $this->addSql('ALTER TABLE products__items_transactions ADD CONSTRAINT FK_D9EFCC63BC5816C4 FOREIGN KEY (invoice_product_id) REFERENCES invoices__invoices_products (id) ON DELETE SET NULL');
  29.         $this->addSql('ALTER TABLE products__items ADD warehouse_id INT NOT NULL, CHANGE stock stock INT DEFAULT 0 NOT NULL, CHANGE price price INT DEFAULT 0 NOT NULL');
  30.         $this->addSql('ALTER TABLE products__items ADD CONSTRAINT FK_ED158EFB5080ECDE FOREIGN KEY (warehouse_id) REFERENCES warehouses__warehouses (id) ON DELETE CASCADE');
  31.         $this->addSql('CREATE INDEX IDX_ED158EFB5080ECDE ON products__items (warehouse_id)');
  32.         $this->addSql('ALTER TABLE users__users ADD cookie VARCHAR(255) NOT NULL');
  33.     }
  34.     public function down(Schema $schema): void
  35.     {
  36.         // this down() migration is auto-generated, please modify it to your needs
  37.         $this->addSql('ALTER TABLE invoices__invoices DROP FOREIGN KEY FK_7C29A666B0265DC7');
  38.         $this->addSql('ALTER TABLE invoices__invoices_products DROP FOREIGN KEY FK_F8E4B8EA2989F1FD');
  39.         $this->addSql('ALTER TABLE products__items_transactions DROP FOREIGN KEY FK_D9EFCC63BC5816C4');
  40.         $this->addSql('ALTER TABLE invoices__invoices_products DROP FOREIGN KEY FK_F8E4B8EA5080ECDE');
  41.         $this->addSql('ALTER TABLE products__items DROP FOREIGN KEY FK_ED158EFB5080ECDE');
  42.         $this->addSql('DROP TABLE contractors__contractors');
  43.         $this->addSql('DROP TABLE invoices__invoices');
  44.         $this->addSql('DROP TABLE invoices__invoices_products');
  45.         $this->addSql('DROP TABLE products__items_transactions');
  46.         $this->addSql('DROP TABLE warehouses__warehouses');
  47.         $this->addSql('DROP INDEX IDX_ED158EFB5080ECDE ON products__items');
  48.         $this->addSql('ALTER TABLE products__items DROP warehouse_id, CHANGE stock stock INT NOT NULL, CHANGE price price INT NOT NULL');
  49.         $this->addSql('ALTER TABLE users__users DROP cookie');
  50.     }
  51. }