defaultFunctions
Experimental Feature
Configure the default function for this column. The key of this element is a field from a model, and the value is the default value of said column. To configure default functions, add these lines to your configuration object:
export default {
// Other configuration lines
defaultFunctions: {
"filePath:Model.column": (dmmf) => "defaultValue"
}
};
Last updated