8 use Phinx\Migration\AbstractMigration;
11 public function up() {
17 $tableName =
'cutronab';
18 $tableCol =
'description';
21 if ($this->hasTable($tableName)) {
23 $table = $this->table($tableName);
24 if ($table->hasColumn($tableCol)) {
27 $table->changeColumn($tableCol,
'string', [
'null' =>
true,
'limit' => 255])
35 public function down() {