UNPKG

@proofkit/cli

Version:

Create web application with the ProofKit stack

37 lines (33 loc) 966 B
// Example model schema from the Drizzle docs // https://orm.drizzle.team/docs/sql-schema-declaration import { sql } from "drizzle-orm"; import { index, pgTableCreator, serial, timestamp, varchar, } from "drizzle-orm/pg-core"; /** * This is an example of how to use the multi-project schema feature of Drizzle ORM. Use the same * database instance for multiple projects. * * @see https://orm.drizzle.team/docs/goodies#multi-project-schema */ export const createTable = pgTableCreator((name) => `project1_${name}`); export const posts = createTable( "post", { id: serial("id").primaryKey(), name: varchar("name", { length: 256 }), createdAt: timestamp("created_at", { withTimezone: true }) .default(sql`CURRENT_TIMESTAMP`) .notNull(), updatedAt: timestamp("updated_at", { withTimezone: true }).$onUpdate( () => new Date() ), }, (example) => ({ nameIndex: index("name_idx").on(example.name), }) );