mirror of
https://github.com/kmc7468/arkvault.git
synced 2026-02-04 16:16:55 +00:00
8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
import { sqliteTable, text, integer } from "drizzle-orm/sqlite-core";
|
|
|
|
export const user = sqliteTable("user", {
|
|
id: integer("id").primaryKey(),
|
|
email: text("email").notNull().unique(),
|
|
password: text("password").notNull(),
|
|
});
|