From 6b2cde803017202624cb0971e0e9ec9f97d8aca0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20Forn=C3=A9s=20Ray=C3=B3?= Date: Sat, 5 Apr 2025 14:44:55 +0200 Subject: [PATCH] fix: remove unneeded todo schema at auth.ts from drizzle-sqlite template (#114) --- .../with-drizzle-sqlite/apps/server/src/db/schema/auth.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/cli/template/with-drizzle-sqlite/apps/server/src/db/schema/auth.ts b/apps/cli/template/with-drizzle-sqlite/apps/server/src/db/schema/auth.ts index 29e986a..c0f5512 100644 --- a/apps/cli/template/with-drizzle-sqlite/apps/server/src/db/schema/auth.ts +++ b/apps/cli/template/with-drizzle-sqlite/apps/server/src/db/schema/auth.ts @@ -1,11 +1,5 @@ import { sqliteTable, text, integer } from "drizzle-orm/sqlite-core"; -export const todo = sqliteTable("todo", { - id: integer("id").primaryKey({ autoIncrement: true }), - text: text("text").notNull(), - completed: integer("completed", { mode: "boolean" }).default(false).notNull() -}); - export const user = sqliteTable("user", { id: text("id").primaryKey(), name: text("name").notNull(),