Index: database/drizzle/queries/todos.ts
===================================================================
--- database/drizzle/queries/todos.ts	(revision fdd776b4ca5fc651b66cb07a78a265c132fb9deb)
+++ 	(revision )
@@ -1,10 +1,0 @@
-import type { dbSqlite } from "../db";
-import { todoTable } from "../schema/todos";
-
-export function insertTodo(db: ReturnType<typeof dbSqlite>, text: string) {
-  return db.insert(todoTable).values({ text });
-}
-
-export function getAllTodos(db: ReturnType<typeof dbSqlite>) {
-  return db.select().from(todoTable).all();
-}
Index: database/drizzle/schema/todos.ts
===================================================================
--- database/drizzle/schema/todos.ts	(revision fdd776b4ca5fc651b66cb07a78a265c132fb9deb)
+++ 	(revision )
@@ -1,11 +1,0 @@
-import { integer, sqliteTable, text } from "drizzle-orm/sqlite-core";
-
-// Example of defining a schema in Drizzle ORM:
-export const todoTable = sqliteTable("todos", {
-  id: integer("id", { mode: "number" }).primaryKey({ autoIncrement: true }),
-  text: text("text", { length: 50 }).notNull(),
-});
-
-// You can then infer the types for selecting and inserting
-export type TodoItem = typeof todoTable.$inferSelect;
-export type TodoInsert = typeof todoTable.$inferInsert;
