๐Ÿ“ฆ hyoban / sqlocal-demo

๐Ÿ“„ schema.ts ยท 7 lines
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(),
})