PostGIS Column has Z dimension but geometry does not
When there is no implicit cast between two datatypes you need to state it explicitly. In your case ST_Force3D (or ST_Force_3D
for PostGIS versions earlier than 2.1) should do the trick:
ALTER TABLE cl
ALTER COLUMN geom TYPE geometry(MultiLineStringZ)
USING ST_Force_3D(geom);