// Core table — the multi-tenancy boundary. Every row in a `tenant()`-marked // table carries `tenantId` pointing here. Unlike `actors`, you DECLARE this // one (it's app-shaped — add the fields your org/tenant needs). import { id, table, text, timestamp } from '@voltro/database' export const tenants = table('tenants', { id: id(), name: text(), createdAt: timestamp().default('now'), })