forge->modifyColumn('clientes', [ 'comercial_id' => [ 'type' => 'int(10) unsigned', 'null' => true, // Permitir valores NULL ], 'soporte_id' => [ 'type' => 'int(10) unsigned', 'null' => true, // Permitir valores NULL ], ]); } public function down() { $this->forge->modifyColumn('clientes', [ 'comercial_id' => [ 'type' => 'int(10) unsigned', 'null' => false, ], 'soporte_id' => [ 'type' => 'int(10) unsigned', 'null' => false, ], ]); } }