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
@@ -16,7 +16,7 @@ The rest of this guide uses this `Manager` data model as an example:
import { model } from "@medusajs/utils"
const Manager = model.define("manager", {
id: model.id(),
id: model.id().primaryKey(),
firstName: model.text(),
lastName: model.text(),
email: model.text(),