Skip to content

Commit

Permalink
fix(dist): Add Migration file in dist to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Etienne Gutbub committed Dec 14, 2023
1 parent 17435a0 commit 28c9c6a
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions dist/src/Migrations/Version20231214131617.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?php

/*
* This file is part of Monsieur Biz' No Commerce plugin for Sylius.
*
* (c) Monsieur Biz <[email protected]>
*
* For the full copyright and license information, please view the LICENSE.txt
* file that was distributed with this source code.
*/

declare(strict_types=1);

namespace App\Migrations;

use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;

/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20231214131617 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('ALTER TABLE mbiz_settings_setting CHANGE json_value json_value JSON DEFAULT NULL');
}

public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE mbiz_settings_setting CHANGE json_value json_value JSON DEFAULT NULL');
}
}

0 comments on commit 28c9c6a

Please sign in to comment.