docs: document composite indices + primary key changes (#7902)

This commit is contained in:
Shahed Nasser
2024-07-02 12:34:44 +03:00
committed by GitHub
parent a84e5a6ced
commit 6cb28eedf7
13 changed files with 205 additions and 93 deletions
@@ -30,7 +30,7 @@ For example, create the file `src/modules/hello/models/my-custom.ts` with the fo
import { model } from "@medusajs/utils"
const MyCustom = model.define("my_custom", {
id: model.id(),
id: model.id().primaryKey(),
name: model.text(),
})