cities() — drizzle-orm Function Reference
Architecture documentation for the cities() function in tables.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD 1f73ed82_3972_0f5c_0eb2_24d4fff59c90["cities()"] 87dcb46e_0d95_8341_e760_d59ef620c68d["tables.ts"] 1f73ed82_3972_0f5c_0eb2_24d4fff59c90 -->|defined in| 87dcb46e_0d95_8341_e760_d59ef620c68d style 1f73ed82_3972_0f5c_0eb2_24d4fff59c90 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
drizzle-orm/type-tests/sqlite/tables.ts lines 99–103
export const cities = sqliteTable('cities_table', ({ integer, text }) => ({
id: integer('id').primaryKey(),
name: text('name').notNull(),
population: integer('population').default(0),
}));
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does cities() do?
cities() is a function in the drizzle-orm codebase, defined in drizzle-orm/type-tests/sqlite/tables.ts.
Where is cities() defined?
cities() is defined in drizzle-orm/type-tests/sqlite/tables.ts at line 99.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free