瀏覽代碼

Tickets

develop
Guillaume 3 年之前
父節點
當前提交
5606ebd96c
共有 1 個檔案被更改,包括 3 行新增1 行删除
  1. +3
    -1
      migrations/Version20210616151017.php

migrations/Version20210616135128.php → migrations/Version20210616151017.php 查看文件

@@ -10,7 +10,7 @@ use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20210616135128 extends AbstractMigration
final class Version20210616151017 extends AbstractMigration
{
public function getDescription(): string
{
@@ -20,6 +20,7 @@ final class Version20210616135128 extends AbstractMigration
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE ticket ADD merchant_id INT NOT NULL, ADD order_shop_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE ticket ADD CONSTRAINT FK_97A0ADA36796D554 FOREIGN KEY (merchant_id) REFERENCES merchant (id)');
$this->addSql('ALTER TABLE ticket ADD CONSTRAINT FK_97A0ADA3BB6C6D96 FOREIGN KEY (order_shop_id) REFERENCES order_shop (id)');
$this->addSql('CREATE INDEX IDX_97A0ADA36796D554 ON ticket (merchant_id)');
@@ -33,5 +34,6 @@ final class Version20210616135128 extends AbstractMigration
$this->addSql('ALTER TABLE ticket DROP FOREIGN KEY FK_97A0ADA3BB6C6D96');
$this->addSql('DROP INDEX IDX_97A0ADA36796D554 ON ticket');
$this->addSql('DROP INDEX IDX_97A0ADA3BB6C6D96 ON ticket');
$this->addSql('ALTER TABLE ticket DROP merchant_id, DROP order_shop_id');
}
}

Loading…
取消
儲存