<?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 Version20210611114644 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 cal_refund (id INT AUTO_INCREMENT NOT NULL, type VARCHAR(20) NOT NULL, stripe_id VARCHAR(100) DEFAULT NULL, created_at DATETIME NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE cal_inventory ADD deposit_refund_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE cal_inventory ADD CONSTRAINT FK_4A4F57D71CBF9F82 FOREIGN KEY (deposit_refund_id) REFERENCES cal_refund (id)');
$this->addSql('CREATE UNIQUE INDEX UNIQ_4A4F57D71CBF9F82 ON cal_inventory (deposit_refund_id)');
}
public function down(Schema $schema) : void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE cal_inventory DROP FOREIGN KEY FK_4A4F57D71CBF9F82');
$this->addSql('DROP TABLE cal_refund');
$this->addSql('DROP INDEX UNIQ_4A4F57D71CBF9F82 ON cal_inventory');
$this->addSql('ALTER TABLE cal_inventory DROP deposit_refund_id');
}
}