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;
