Gorka CesiumG
Convex Community3y ago
3 replies
Gorka Cesium

how to change a schema to remove an array if there is already data with that array?

quote Schema:
name: v.string(),
items: v.array(v.id("items")) // want to remove this field but there are already quotes in the DB with this field


how can I delete the
items
field from the schema without having to delete all the data in the quotes table?
I tried to mark the column "items" as null but it wasn't possible
Was this page helpful?