getTable('kimai2_tags'); $tags->addColumn('color', 'string', ['length' => 7, 'notnull' => false, 'default' => null]); } public function down(Schema $schema): void { $tags = $schema->getTable('kimai2_tags'); $tags->dropColumn('color'); } }