getTable('kimai2_projects'); $column = $projects->getColumn('order_number'); $column->setOptions(['length' => 50]); $this->preventEmptyMigrationWarning(); } public function down(Schema $schema): void { $projects = $schema->getTable('kimai2_projects'); $column = $projects->getColumn('order_number'); $column->setOptions(['length' => 20]); $this->preventEmptyMigrationWarning(); } }