This method defines an index on a property.
Code1import { model } from "@medusajs/framework/utils"2 3const MyCustom = model.define("my_custom", {4 id: model.id(),5 name: model.text().index(6 "IDX_MY_CUSTOM_NAME"7 ),8})9 10export default MyCustom
1import { model } from "@medusajs/framework/utils"2 3const MyCustom = model.define("my_custom", {4 id: model.id(),5 name: model.text().index(6 "IDX_MY_CUSTOM_NAME"7 ),8})9 10export default MyCustom
name