SchemaField with increasable max?
I'm trying to understand the new schema fields and have a situation where I sometimes want to increase the "max" value of a field. Is that possible?
I have this
but it seems I cannot increase the max value via
carryLoad.max += 10
for example2 Replies
That is because to change a property of a document, you need to perform an actual update that gets persisted to the database.
yup that explains it! thanks đź‘Ť