bigNumber Property Method - DML Reference
This method defines a number property that expects large numbers, such as prices.
Example#
1import { model } from "@medusajs/framework/utils"2
3const MyCustom = model.define("my_custom", {4 price: model.bigNumber(),5 6})7
8export default MyCustom
Was this page helpful?