table('audit_log') ->addColumn('target_label', 'string', ['limit' => 255, 'null' => true, 'after' => 'target_id']) ->update(); } public function down(): void { $this->table('audit_log') ->removeColumn('target_label') ->update(); } }