|
|
@@ -1,4 +1,5 @@
|
|
|
<?php
|
|
|
+
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
use Phinx\Migration\AbstractMigration;
|
|
|
@@ -15,7 +16,6 @@ final class StringToText extends AbstractMigration
|
|
|
->changeColumn('content', 'text')
|
|
|
->save();
|
|
|
|
|
|
-
|
|
|
$this->table('ticket')
|
|
|
->changeColumn('content', 'text')
|
|
|
->save();
|
|
|
@@ -49,7 +49,6 @@ final class StringToText extends AbstractMigration
|
|
|
->changeColumn('content', 'string')
|
|
|
->save();
|
|
|
|
|
|
-
|
|
|
$this->table('ticket')
|
|
|
->changeColumn('content', 'string')
|
|
|
->save();
|