1 2 3 4 5 6 7import { sqliteTable, int, text } from "drizzle-orm/sqlite-core" export const notes = sqliteTable("notes", { id: int("id").primaryKey({ autoIncrement: true }), content: text("content").notNull(), })
1 2 3 4 5 6 7
import { sqliteTable, int, text } from "drizzle-orm/sqlite-core" export const notes = sqliteTable("notes", { id: int("id").primaryKey({ autoIncrement: true }), content: text("content").notNull(), })