default Method - API Reference
This method defines the default value of a property.
Example#
1import { model } from "@medusajs/framework/utils"2
3const MyCustom = model.define("my_custom", {4 color: model5 .enum(["black", "white"])6 .default("black"),7 age: model8 .number()9 .default(0),10 11})12
13export default MyCustom
Parameters#
Was this page helpful?