migrations/Version20220815124504.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 Version20220815124504 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 bookkeeping__sberbank_acquiring_orders (id INT AUTO_INCREMENT NOT NULL, order_id INT NOT NULL, created_at DATETIME NOT NULL, status VARCHAR(255) NOT NULL, type VARCHAR(255) DEFAULT NULL, acquiring_order VARCHAR(255) DEFAULT NULL, form_url VARCHAR(255) DEFAULT NULL, auth_code VARCHAR(255) DEFAULT NULL, operation_id VARCHAR(255) DEFAULT NULL, amount INT NOT NULL, refund_amount INT DEFAULT 0 NOT NULL, error LONGTEXT DEFAULT NULL, webhook_request LONGTEXT DEFAULT NULL, INDEX IDX_6F83AD3D8D9F6D38 (order_id), INDEX created_at (created_at), INDEX status (status), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('CREATE TABLE bookkeeping__sberbank_acquiring_orders_products (id INT AUTO_INCREMENT NOT NULL, sberbank_acquiring_order_id INT DEFAULT NULL, product_id INT DEFAULT NULL, created_at DATETIME NOT NULL, quantity INT NOT NULL, amount INT NOT NULL, refund_amount INT DEFAULT 0 NOT NULL, INDEX IDX_33108702C6DB15B5 (sberbank_acquiring_order_id), INDEX IDX_331087024584665A (product_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  20.         $this->addSql('ALTER TABLE bookkeeping__sberbank_acquiring_orders ADD CONSTRAINT FK_6F83AD3D8D9F6D38 FOREIGN KEY (order_id) REFERENCES orders__orders (id) ON DELETE CASCADE');
  21.         $this->addSql('ALTER TABLE bookkeeping__sberbank_acquiring_orders_products ADD CONSTRAINT FK_33108702C6DB15B5 FOREIGN KEY (sberbank_acquiring_order_id) REFERENCES bookkeeping__sberbank_acquiring_orders (id)');
  22.         $this->addSql('ALTER TABLE bookkeeping__sberbank_acquiring_orders_products ADD CONSTRAINT FK_331087024584665A FOREIGN KEY (product_id) REFERENCES products__products (id)');
  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('ALTER TABLE bookkeeping__sberbank_acquiring_orders_products DROP FOREIGN KEY FK_33108702C6DB15B5');
  28.         $this->addSql('DROP TABLE bookkeeping__sberbank_acquiring_orders');
  29.         $this->addSql('DROP TABLE bookkeeping__sberbank_acquiring_orders_products');
  30.     }
  31. }