mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-16 06:58:46 +00:00
9 lines
297 B
TypeScript
9 lines
297 B
TypeScript
import { sqliteTable, text, integer } from "drizzle-orm/sqlite-core";
|
|
|
|
export const user = sqliteTable("user", {
|
|
id: integer("id").primaryKey({ autoIncrement: true }),
|
|
email: text("email").notNull().unique(),
|
|
password: text("password").notNull(),
|
|
nickname: text("nickname").notNull(),
|
|
});
|