chore: remove unused import of 'serial' from auth schema

This commit is contained in:
2025-09-03 12:46:59 -03:00
parent f005ae1c46
commit 040e3beb38

View File

@@ -1,4 +1,4 @@
import { boolean, pgTable, serial, text, timestamp } from "drizzle-orm/pg-core";
import { boolean, pgTable, text, timestamp } from "drizzle-orm/pg-core";
export const user = pgTable("user", {
id: text("id").primaryKey(),