Stacks Models
Key Paths
- Your models:
app/Models/ (create it; it does not exist in a fresh project)
- Built-in models:
storage/framework/defaults/app/Models/ (62 files, grouped
into commerce/, Content/, realtime/ and a flat top level)
ModelOptions / Attribute types: storage/framework/core/types/src/model.ts
- Attribute presets:
storage/framework/types/attributes.ts
To customize a built-in model, create the same filename under app/Models/ -
app/Models/User.ts wins over the default. buddy publish:model User copies the
default across as a starting point.
Writing a model
Everything - schema, validation, factory, relationships, behavior - is declared
in one defineModel() call. Migrations are derived from this; you do not write
the SQL.
// app/Models/Product.ts
import { defineModel } from '@stacksjs/orm'
import { schema } from '@stacksjs/validation'
export default defineModel({
name: 'Product', // defaults to the file name
table: 'products', // defaults to lowercase plural of `name`
primaryKey: 'id', // default
autoIncrement: true, // default
traits: {
useUuid: true,
useTimestamps: true,
useApi: { uri: 'products', routes: ['index', 'store', 'show', 'update', 'destroy'] },
useSearch: { searchable: ['name'], filterable: ['status'] },
observe: true,
},
belongsTo: ['Category'],
hasMany: ['Review'],
attributes: {
name: {
required: true,
fillable: true,
order: 1,
validation: {
rule: schema.string().min(3).max(100),
message: { max: 'Name must have a maximum of 100 characters' },
},
factory: faker => faker.commerce.productName(),
},
status: {
required: true,
fillable: true,
default: 'draft',
validation: { rule: schema.enum(['draft', 'published', 'archived']) },
factory: faker => faker.helpers.arrayElement(['draft', 'published', 'archived']),
},
},
} as const)
as const is what the built-in models use - it narrows literal types so the
generated model types stay precise.
Attribute fields
validation.rule is the only required key on an attribute.
| Field |
Effect |
required |
Value required; emits a NOT NULL column |
nullable |
Explicit nullability override |
default |
Column default (string | number | boolean | Date) |
unique |
Unique constraint |
type |
Force the column type instead of inferring from the rule |
order |
Column order in the table and in dashboard forms |
fillable |
Allow mass assignment |
guarded |
Block mass assignment |
hidden |
Exclude from JSON serialization (passwords, tokens) |
foreignKey |
Disable, infer, or configure the FK constraint |
factory |
(faker) => value, used by seeders and tests |
validation |
{ rule, message? } - rule from schema, message keyed by rule name |
Traits
| Trait |
What it adds |
useUuid |
UUID column alongside the primary key |
useTimestamps (alias timestampable) |
created_at / updated_at. On by default |
useSoftDeletes (alias softDeletable) |
deleted_at plus soft-delete query scopes |
useAuth (alias authenticatable) |
Auth columns; { usePasskey: true } adds passkeys |
useApi |
Generates REST actions and routes: { uri, routes, middleware? } |
useSearch (alias searchable) |
Search-engine indexing: { displayable, searchable, sortable, filterable } |
useSocials |
OAuth identities, e.g. ['github'] |
useActivityLog |
Writes an Activity row per change |
observe |
Emits {model}:created / :updated / :deleted events |
billable |
Stripe methods (checkout(), activeSubscription(), ...) |
taggable / categorizable / commentable / likeable |
Pivot tables and their relation methods |
Also at the top level: indexes: [{ name, columns, unique?, where? }] for
composite and partial-unique indexes, and dashboard: { highlight: true } to
feature the model in the admin UI.
useApi is an API capability, not a dashboard-view generator. Its generated
routes are registered from the merged model registry. Framework defaults are
loaded first, then recursive app/Models/ definitions override matching model
names. Protect non-public resources at the model:
useApi: {
uri: 'mail-preferences',
routes: ['index', 'store', 'show', 'update', 'destroy'],
middleware: ['auth'],
}
Dashboard-specific endpoints may still use scoped Actions when their transport
shape, authorization boundary, or aggregation differs from generic CRUD. Do
not expose a sensitive model through unguarded generated routes just because a
separate dashboard endpoint is protected.
Generated store and update routes accept both spellings of every fillable
attribute and each foreign key implied by belongsTo. Declaring Product as a
belongs-to relation therefore accepts productId or product_id without
duplicating that relationship column as an attribute.
Relationships
hasOne, hasMany, belongsTo, belongsToMany, hasOneThrough,
hasManyThrough, morphOne, morphMany, morphTo, morphToMany,
morphedByMany. Each takes an array of model names, or an object form when you
need to name the foreign key.
The object form is also where a belongsTo says what happens to its row when
the row it points at is deleted:
belongsTo: [
{ model: 'Repository', onDelete: 'cascade' },
{ model: 'User', foreignKey: 'author_id', onDelete: 'set null' },
],
'cascade' | 'set null' | 'restrict' | 'no action', enforced by the database
on the foreign key. Left off, the default applies: the delete is refused while
a child still points at the row.
Worth declaring rather than deleting children in application code. The order
has to be right in every place that deletes, forever, and the place that misses
one leaves rows nothing can reach - while the database applies the rule to
deletes the application never made: a manual DELETE, a restore, another
service sharing the schema. Not for a polymorphic pair (commentable_id
beside commentable_type): those carry no foreign key at all, because a
constraint would name one table and reject every row pointing at another.
Use the named object form for a many-to-many relation that owns its pivot
schema. It keeps the relation accessor, migration, pivot defaults, timestamps,
and uniqueness in the model definition:
belongsToMany: {
tags: {
model: 'Tag',
table: 'taggable_models',
foreignKey: 'taggable_id',
relatedKey: 'tag_id',
pivot: {
columns: {
taggable_type: { default: 'posts' },
},
timestamps: true,
uniques: [['tag_id', 'taggable_id', 'taggable_type']],
},
},
},
An instance then exposes the named relation directly:
const post = await Post.find(id)
await post.tags().sync(tagIds)
await post.tags().detach()
The legacy array form remains supported. Prefer the named form when the pivot
has custom keys, columns, defaults, timestamps, or uniqueness. Run
buddy generate:migrations after changing pivot metadata.
Computed properties and scopes
get: {
fullName: (model) => `${model.firstName} ${model.lastName}`,
},
set: {
password: (value) => makeHash(value),
},
scopes: {
published: (query) => query.where('status', 'published'),
},
Workflow
buddy make:model Product # scaffold app/Models/Product.ts
buddy generate:migrations # diff models against the schema, emit SQL
# review the generated file in database/migrations/
buddy migrate # apply it
buddy migrate:fresh --seed # dev only: drop, re-migrate, seed
Models resolve at runtime through createModel() from bun-query-builder -
there is no build step between editing a model and querying it. Only migrations
need generating.
Seeding
Seed data is declared on the model, through the useSeeder trait plus the
per-attribute factory functions:
traits: {
useSeeder: {
count: 20,
// Optional: pin specific rows over the generated ones. Keys use the
// model's camelCase attribute names.
fixtures: [
{ name: 'Flagship Widget', status: 'published' },
],
},
},
buddy seed walks every model carrying the trait and fills its table from the
attribute factories. Model fixture data needs no separate seeder or registration.
Idempotent application bootstrap work can live in database/seeders as a
default-exported class extending Seeder from @stacksjs/database. Buddy runs
those application seeders after the model factories.
buddy seed # every model with a useSeeder trait
buddy seed --fresh # truncate each table first
buddy seed --only Product,Review # just these models
buddy seed --except User # everything but these
buddy seed --include-defaults # framework built-ins too
A model with no useSeeder trait is never seeded. Auth and OAuth models are
skipped on a non-fresh database so re-seeding cannot invalidate live sessions -
pass --allow-protected to override.
All 62 built-in models by category
Users & Auth
- User — name, email, password | traits: useAuth(passkey), useUuid, useTimestamps, useSocials(github) | hasOne: Subscriber, Driver, Author | hasMany: PersonalAccessToken, Customer
- Author — name, email | belongsTo: User | hasMany: Post
- Customer — name, email, phone, totalSpent, lastOrder, status, avatar | belongsTo: User | hasMany: Order, GiftCard, Review, Payment
- Driver — name, phone, vehicleNumber, license, status | belongsTo: User | hasMany: DeliveryRoute
- Subscriber — email, status, source | belongsTo: User | hasMany: SubscriberEmail
Content
- Post — title, content, poster, excerpt, views, publishedAt, status, isFeatured | belongsTo: Author | traits: categorizable, taggable, commentable | seeder: 20
- Page — similar to Post with taggable, categorizable
- Comment — author info, approval, content fields
- Tag — name(unique), slug(unique), description, postCount, color | seeder: 15
- Category — name, description, slug, imageUrl, isActive, parentCategoryId, displayOrder | hasMany: Product | seeder: 10
Commerce (20+ models)
- Product — name(max100), description, price(min1), imageUrl, isAvailable, inventoryCount, preparationTime, allergens(JSON), nutritionalInfo(JSON) | belongsTo: Category, Manufacturer | hasMany: Review, ProductUnit, ProductVariant, LicenseKey, WaitlistProduct, Coupon | seeder: 10, dashboard: highlighted
- ProductVariant — SKU, options, pricing
- ProductUnit — unit-specific pricing
- Cart — status(active|abandoned|converted|expired), totalItems, subtotal, taxAmount, discountAmount, total, expiresAt, currency(USD), notes | hasMany: CartItem | belongsTo: Customer, Coupon
- CartItem — quantity(min1), unitPrice, totalPrice, taxRate, taxAmount, discountPercentage, productName, productSku | belongsTo: Cart
- Order — status, totalAmount, taxAmount, discountAmount, deliveryFee, tipAmount, orderType(DINE_IN|TAKEOUT|DELIVERY), deliveryAddress, specialInstructions | hasMany: OrderItem, Payment | belongsTo: Customer, Coupon | observe: true | seeder: 20
- OrderItem — quantity(min1), price(min0), specialInstructions | belongsTo: Order, Product
- Coupon — code(unique), discountType(fixed_amount|percentage), discountValue, minOrderAmount, usageLimit, usageCount, startDate, endDate | seeder: 15
- GiftCard — code(unique), initialBalance, currentBalance, currency, status, recipientEmail, isDigital, isReloadable, expiryDate | seeder: 20
- Manufacturer — manufacturer info
- Review — rating(1-5), title, content(max2000), isVerifiedPurchase, isApproved, isFeatured, helpfulVotes, unhelpfulVotes | belongsTo: Product, Customer | seeder: 50
Shipping & Delivery
- ShippingMethod, ShippingRate (weightFrom, weightTo, rate), ShippingZone
- DeliveryRoute — driver, vehicle, stops, totalDistance | belongsTo: Driver
- DigitalDelivery — name, downloadLimit, expiryDays, automaticDelivery
- LicenseKey — key(XXXX-XXXX-XXXX-XXXX-XXXX), template, expiryDate, status
Payments & Financial
- Payment — amount, method(creditCard|debitCard|paypal|...), status(pending|completed|failed|refunded), currency, transactionId(unique) | belongsTo: Order, Customer | seeder: 50
- PaymentMethod, PaymentProduct, PaymentTransaction
- Subscription — type, providerId, providerStatus, unitPrice
- Transaction — standard transaction tracking
- TaxRate — name, rate(0-100), type(VAT|GST|Sales Tax|Customs Duty), country, region, isDefault
Engagement & Marketing
- Notification — type, channel, recipient, subject, body, status(pending|sent|delivered|failed|read) | belongsTo: User | seeder: 30
- Campaign — name, type(email|sms|push|social|multi-channel), status, audienceSize, openRate, clickRate, budget | seeder: 10
- Activity — type, description, subjectType, subjectId, causer, properties(JSON), ipAddress | belongsTo: User | seeder: 50
- EmailList, SocialPost, LoyaltyPoint (walletId, points, source, expiryDate), LoyaltyReward
System
- Job — queue, payload, attempts, available_at, reserved_at | seeder: 15
- FailedJob — failed background jobs
- Error — type, message, stack, status, additionalInfo | seeder: 10
- Log — application logs
- Request — method, path, statusCode, durationMs, ipAddress, memoryUsage, userAgent, errorMessage | seeder: 50
- Websocket — connection tracking
- PrintDevice — name, location, terminal, lastPing, printCount, isActive
- WaitlistProduct, WaitlistRestaurant — waitlist tracking
- Receipt — receipt records
CLI Commands
buddy make:model [name] — scaffold a model in app/Models/
buddy publish:model [name] — copy a built-in model into app/Models/ to override it
buddy generate:migrations — diff models against the schema and emit SQL
buddy migrate / buddy migrate:fresh --seed — apply migrations
buddy make:migration [name] — hand-write a migration instead
buddy make:factory [name] — standalone factory
buddy seed — seed every model carrying a useSeeder trait
Gotchas
- No code generation step for models.
defineModel() calls createModel()
from bun-query-builder at runtime, so a model is queryable the moment you save
it. Only migrations are generated.
- Migrations come from models. Change the model, run
buddy generate:migrations,
review the SQL, then buddy migrate. Editing a generated migration by hand
will be overwritten by the next diff.
commentable, not commentables. define-model only checks the singular
key. The plural spelling used to type check while leaving the trait inert.
- Seeding is model-declared.
useSeeder sets the count and fixtures; the
per-attribute factory functions produce the values. There are no seeder
files to write or register.
hidden is serialization, guarded is mass assignment. They are different
protections; a password wants both hidden and no fillable.
validation.rule is mandatory on every attribute - it drives both request
validation and the inferred column type.
- Dashboard-highlighted models (
dashboard: { highlight: true }) appear
prominently in the admin UI.
1---2name: stacks-models3description: Use when working with data models in Stacks - the defineModel() API, model attributes with validation and factories, relationships (hasOne/hasMany/belongsTo/belongsToMany), traits (useAuth, useUuid, useTimestamps, useSearch, useApi, billable, taggable, categorizable, commentable, likeable, observe), computed properties (get/set), model generation, and the 50+ built-in framework models. Covers model definitions and storage/framework/defaults/app/Models/.4license: MIT5---67# Stacks Models89## Key Paths10- Your models: `app/Models/` (create it; it does not exist in a fresh project)11- Built-in models: `storage/framework/defaults/app/Models/` (62 files, grouped12 into `commerce/`, `Content/`, `realtime/` and a flat top level)13- `ModelOptions` / `Attribute` types: `storage/framework/core/types/src/model.ts`14- Attribute presets: `storage/framework/types/attributes.ts`1516To customize a built-in model, create the same filename under `app/Models/` -17`app/Models/User.ts` wins over the default. `buddy publish:model User` copies the18default across as a starting point.1920## Writing a model2122Everything - schema, validation, factory, relationships, behavior - is declared23in one `defineModel()` call. Migrations are derived from this; you do not write24the SQL.2526```ts27// app/Models/Product.ts28import { defineModel } from '@stacksjs/orm'29import { schema } from '@stacksjs/validation'3031export default defineModel({32 name: 'Product', // defaults to the file name33 table: 'products', // defaults to lowercase plural of `name`34 primaryKey: 'id', // default35 autoIncrement: true, // default3637 traits: {38 useUuid: true,39 useTimestamps: true,40 useApi: { uri: 'products', routes: ['index', 'store', 'show', 'update', 'destroy'] },41 useSearch: { searchable: ['name'], filterable: ['status'] },42 observe: true,43 },4445 belongsTo: ['Category'],46 hasMany: ['Review'],4748 attributes: {49 name: {50 required: true,51 fillable: true,52 order: 1,53 validation: {54 rule: schema.string().min(3).max(100),55 message: { max: 'Name must have a maximum of 100 characters' },56 },57 factory: faker => faker.commerce.productName(),58 },59 status: {60 required: true,61 fillable: true,62 default: 'draft',63 validation: { rule: schema.enum(['draft', 'published', 'archived']) },64 factory: faker => faker.helpers.arrayElement(['draft', 'published', 'archived']),65 },66 },67} as const)68```6970`as const` is what the built-in models use - it narrows literal types so the71generated model types stay precise.7273### Attribute fields7475`validation.rule` is the only required key on an attribute.7677| Field | Effect |78|---|---|79| `required` | Value required; emits a `NOT NULL` column |80| `nullable` | Explicit nullability override |81| `default` | Column default (`string \| number \| boolean \| Date`) |82| `unique` | Unique constraint |83| `type` | Force the column type instead of inferring from the rule |84| `order` | Column order in the table and in dashboard forms |85| `fillable` | Allow mass assignment |86| `guarded` | Block mass assignment |87| `hidden` | Exclude from JSON serialization (passwords, tokens) |88| `foreignKey` | Disable, infer, or configure the FK constraint |89| `factory` | `(faker) => value`, used by seeders and tests |90| `validation` | `{ rule, message? }` - `rule` from `schema`, `message` keyed by rule name |9192### Traits9394| Trait | What it adds |95|---|---|96| `useUuid` | UUID column alongside the primary key |97| `useTimestamps` (alias `timestampable`) | `created_at` / `updated_at`. On by default |98| `useSoftDeletes` (alias `softDeletable`) | `deleted_at` plus soft-delete query scopes |99| `useAuth` (alias `authenticatable`) | Auth columns; `{ usePasskey: true }` adds passkeys |100| `useApi` | Generates REST actions and routes: `{ uri, routes, middleware? }` |101| `useSearch` (alias `searchable`) | Search-engine indexing: `{ displayable, searchable, sortable, filterable }` |102| `useSocials` | OAuth identities, e.g. `['github']` |103| `useActivityLog` | Writes an `Activity` row per change |104| `observe` | Emits `{model}:created` / `:updated` / `:deleted` events |105| `billable` | Stripe methods (`checkout()`, `activeSubscription()`, ...) |106| `taggable` / `categorizable` / `commentable` / `likeable` | Pivot tables and their relation methods |107108Also at the top level: `indexes: [{ name, columns, unique?, where? }]` for109composite and partial-unique indexes, and `dashboard: { highlight: true }` to110feature the model in the admin UI.111112`useApi` is an API capability, not a dashboard-view generator. Its generated113routes are registered from the merged model registry. Framework defaults are114loaded first, then recursive `app/Models/` definitions override matching model115names. Protect non-public resources at the model:116117```ts118useApi: {119 uri: 'mail-preferences',120 routes: ['index', 'store', 'show', 'update', 'destroy'],121 middleware: ['auth'],122}123```124125Dashboard-specific endpoints may still use scoped Actions when their transport126shape, authorization boundary, or aggregation differs from generic CRUD. Do127not expose a sensitive model through unguarded generated routes just because a128separate dashboard endpoint is protected.129130Generated store and update routes accept both spellings of every fillable131attribute and each foreign key implied by `belongsTo`. Declaring Product as a132belongs-to relation therefore accepts `productId` or `product_id` without133duplicating that relationship column as an attribute.134135### Relationships136137`hasOne`, `hasMany`, `belongsTo`, `belongsToMany`, `hasOneThrough`,138`hasManyThrough`, `morphOne`, `morphMany`, `morphTo`, `morphToMany`,139`morphedByMany`. Each takes an array of model names, or an object form when you140need to name the foreign key.141142The object form is also where a `belongsTo` says what happens to its row when143the row it points at is deleted:144145```ts146belongsTo: [147 { model: 'Repository', onDelete: 'cascade' },148 { model: 'User', foreignKey: 'author_id', onDelete: 'set null' },149],150```151152`'cascade' | 'set null' | 'restrict' | 'no action'`, enforced by the database153on the foreign key. Left off, the default applies: the delete is refused while154a child still points at the row.155156Worth declaring rather than deleting children in application code. The order157has to be right in every place that deletes, forever, and the place that misses158one leaves rows nothing can reach - while the database applies the rule to159deletes the application never made: a manual `DELETE`, a restore, another160service sharing the schema. Not for a polymorphic pair (`commentable_id`161beside `commentable_type`): those carry no foreign key at all, because a162constraint would name one table and reject every row pointing at another.163164Use the named object form for a many-to-many relation that owns its pivot165schema. It keeps the relation accessor, migration, pivot defaults, timestamps,166and uniqueness in the model definition:167168```ts169belongsToMany: {170 tags: {171 model: 'Tag',172 table: 'taggable_models',173 foreignKey: 'taggable_id',174 relatedKey: 'tag_id',175 pivot: {176 columns: {177 taggable_type: { default: 'posts' },178 },179 timestamps: true,180 uniques: [['tag_id', 'taggable_id', 'taggable_type']],181 },182 },183},184```185186An instance then exposes the named relation directly:187188```ts189const post = await Post.find(id)190await post.tags().sync(tagIds)191await post.tags().detach()192```193194The legacy array form remains supported. Prefer the named form when the pivot195has custom keys, columns, defaults, timestamps, or uniqueness. Run196`buddy generate:migrations` after changing pivot metadata.197198### Computed properties and scopes199200```ts201get: {202 fullName: (model) => `${model.firstName} ${model.lastName}`,203},204set: {205 password: (value) => makeHash(value),206},207scopes: {208 published: (query) => query.where('status', 'published'),209},210```211212## Workflow213214```sh215buddy make:model Product # scaffold app/Models/Product.ts216buddy generate:migrations # diff models against the schema, emit SQL217# review the generated file in database/migrations/218buddy migrate # apply it219buddy migrate:fresh --seed # dev only: drop, re-migrate, seed220```221222Models resolve at runtime through `createModel()` from `bun-query-builder` -223there is no build step between editing a model and querying it. Only migrations224need generating.225226## Seeding227228Seed data is declared on the model, through the `useSeeder` trait plus the229per-attribute `factory` functions:230231```ts232traits: {233 useSeeder: {234 count: 20,235 // Optional: pin specific rows over the generated ones. Keys use the236 // model's camelCase attribute names.237 fixtures: [238 { name: 'Flagship Widget', status: 'published' },239 ],240 },241},242```243244`buddy seed` walks every model carrying the trait and fills its table from the245attribute factories. Model fixture data needs no separate seeder or registration.246Idempotent application bootstrap work can live in `database/seeders` as a247default-exported class extending `Seeder` from `@stacksjs/database`. Buddy runs248those application seeders after the model factories.249250```bash251buddy seed # every model with a useSeeder trait252buddy seed --fresh # truncate each table first253buddy seed --only Product,Review # just these models254buddy seed --except User # everything but these255buddy seed --include-defaults # framework built-ins too256```257258A model with no `useSeeder` trait is never seeded. Auth and OAuth models are259skipped on a non-fresh database so re-seeding cannot invalidate live sessions -260pass `--allow-protected` to override.261262## All 62 built-in models by category263264### Users & Auth265- **User** — name, email, password | traits: useAuth(passkey), useUuid, useTimestamps, useSocials(github) | hasOne: Subscriber, Driver, Author | hasMany: PersonalAccessToken, Customer266- **Author** — name, email | belongsTo: User | hasMany: Post267- **Customer** — name, email, phone, totalSpent, lastOrder, status, avatar | belongsTo: User | hasMany: Order, GiftCard, Review, Payment268- **Driver** — name, phone, vehicleNumber, license, status | belongsTo: User | hasMany: DeliveryRoute269- **Subscriber** — email, status, source | belongsTo: User | hasMany: SubscriberEmail270271### Content272- **Post** — title, content, poster, excerpt, views, publishedAt, status, isFeatured | belongsTo: Author | traits: categorizable, taggable, commentable | seeder: 20273- **Page** — similar to Post with taggable, categorizable274- **Comment** — author info, approval, content fields275- **Tag** — name(unique), slug(unique), description, postCount, color | seeder: 15276- **Category** — name, description, slug, imageUrl, isActive, parentCategoryId, displayOrder | hasMany: Product | seeder: 10277278### Commerce (20+ models)279- **Product** — name(max100), description, price(min1), imageUrl, isAvailable, inventoryCount, preparationTime, allergens(JSON), nutritionalInfo(JSON) | belongsTo: Category, Manufacturer | hasMany: Review, ProductUnit, ProductVariant, LicenseKey, WaitlistProduct, Coupon | seeder: 10, dashboard: highlighted280- **ProductVariant** — SKU, options, pricing281- **ProductUnit** — unit-specific pricing282- **Cart** — status(active|abandoned|converted|expired), totalItems, subtotal, taxAmount, discountAmount, total, expiresAt, currency(USD), notes | hasMany: CartItem | belongsTo: Customer, Coupon283- **CartItem** — quantity(min1), unitPrice, totalPrice, taxRate, taxAmount, discountPercentage, productName, productSku | belongsTo: Cart284- **Order** — status, totalAmount, taxAmount, discountAmount, deliveryFee, tipAmount, orderType(DINE_IN|TAKEOUT|DELIVERY), deliveryAddress, specialInstructions | hasMany: OrderItem, Payment | belongsTo: Customer, Coupon | observe: true | seeder: 20285- **OrderItem** — quantity(min1), price(min0), specialInstructions | belongsTo: Order, Product286- **Coupon** — code(unique), discountType(fixed_amount|percentage), discountValue, minOrderAmount, usageLimit, usageCount, startDate, endDate | seeder: 15287- **GiftCard** — code(unique), initialBalance, currentBalance, currency, status, recipientEmail, isDigital, isReloadable, expiryDate | seeder: 20288- **Manufacturer** — manufacturer info289- **Review** — rating(1-5), title, content(max2000), isVerifiedPurchase, isApproved, isFeatured, helpfulVotes, unhelpfulVotes | belongsTo: Product, Customer | seeder: 50290291### Shipping & Delivery292- **ShippingMethod**, **ShippingRate** (weightFrom, weightTo, rate), **ShippingZone**293- **DeliveryRoute** — driver, vehicle, stops, totalDistance | belongsTo: Driver294- **DigitalDelivery** — name, downloadLimit, expiryDays, automaticDelivery295- **LicenseKey** — key(XXXX-XXXX-XXXX-XXXX-XXXX), template, expiryDate, status296297### Payments & Financial298- **Payment** — amount, method(creditCard|debitCard|paypal|...), status(pending|completed|failed|refunded), currency, transactionId(unique) | belongsTo: Order, Customer | seeder: 50299- **PaymentMethod**, **PaymentProduct**, **PaymentTransaction**300- **Subscription** — type, providerId, providerStatus, unitPrice301- **Transaction** — standard transaction tracking302- **TaxRate** — name, rate(0-100), type(VAT|GST|Sales Tax|Customs Duty), country, region, isDefault303304### Engagement & Marketing305- **Notification** — type, channel, recipient, subject, body, status(pending|sent|delivered|failed|read) | belongsTo: User | seeder: 30306- **Campaign** — name, type(email|sms|push|social|multi-channel), status, audienceSize, openRate, clickRate, budget | seeder: 10307- **Activity** — type, description, subjectType, subjectId, causer, properties(JSON), ipAddress | belongsTo: User | seeder: 50308- **EmailList**, **SocialPost**, **LoyaltyPoint** (walletId, points, source, expiryDate), **LoyaltyReward**309310### System311- **Job** — queue, payload, attempts, available_at, reserved_at | seeder: 15312- **FailedJob** — failed background jobs313- **Error** — type, message, stack, status, additionalInfo | seeder: 10314- **Log** — application logs315- **Request** — method, path, statusCode, durationMs, ipAddress, memoryUsage, userAgent, errorMessage | seeder: 50316- **Websocket** — connection tracking317- **PrintDevice** — name, location, terminal, lastPing, printCount, isActive318- **WaitlistProduct**, **WaitlistRestaurant** — waitlist tracking319- **Receipt** — receipt records320321## CLI Commands322- `buddy make:model [name]` — scaffold a model in `app/Models/`323- `buddy publish:model [name]` — copy a built-in model into `app/Models/` to override it324- `buddy generate:migrations` — diff models against the schema and emit SQL325- `buddy migrate` / `buddy migrate:fresh --seed` — apply migrations326- `buddy make:migration [name]` — hand-write a migration instead327- `buddy make:factory [name]` — standalone factory328- `buddy seed` — seed every model carrying a `useSeeder` trait329330## Gotchas331- **No code generation step for models.** `defineModel()` calls `createModel()`332 from bun-query-builder at runtime, so a model is queryable the moment you save333 it. Only migrations are generated.334- **Migrations come from models.** Change the model, run `buddy generate:migrations`,335 review the SQL, then `buddy migrate`. Editing a generated migration by hand336 will be overwritten by the next diff.337- **`commentable`, not `commentables`.** `define-model` only checks the singular338 key. The plural spelling used to type check while leaving the trait inert.339- **Seeding is model-declared.** `useSeeder` sets the count and fixtures; the340 per-attribute `factory` functions produce the values. There are no seeder341 files to write or register.342- **`hidden` is serialization, `guarded` is mass assignment.** They are different343 protections; a password wants both `hidden` and no `fillable`.344- **`validation.rule` is mandatory** on every attribute - it drives both request345 validation and the inferred column type.346- Dashboard-highlighted models (`dashboard: { highlight: true }`) appear347 prominently in the admin UI.