UNPKG

create-jaydee-app

Version:

This is a project created with Create Jaydee App.

8 lines (6 loc) 207 B
import { int, sqliteTable, text } from "drizzle-orm/sqlite-core"; export const posts = sqliteTable("posts", { id: int("id").primaryKey(), title: text("title").notNull(), content: text("content"), });