import { remember } from "@epic-web/remember";
import { createClient } from "@libsql/client";
import { drizzle } from "drizzle-orm/libsql";
import * as schema from "./schema";
const client = remember("client", () =>
createClient({
url: process.env.DATABASE_URL,
authToken: process.env.DATABASE_AUTH_TOKEN,
}),
);
export const db = drizzle(client, { schema });
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
import { createId as cuid } from "@paralleldrive/cuid2";
import { relations, sql } from "drizzle-orm";
import { index, integer, sqliteTable, text, uniqueIndex } from "drizzle-orm/sqlite-core";
export const users = sqliteTable("users", {
id: text("id")
.notNull()
.primaryKey()
.$defaultFn(() => cuid()),
name: text("name").notNull(),
username: text("username").notNull().unique(),
email: text("email").notNull().unique(),
dob: integer("dob", { mode: "timestamp" }).notNull(),
image: text("image"),
createdAt: integer("createdAt", { mode: "timestamp" })
.notNull()
.default(sql`DATE('now')`),
updatedAt: integer("updatedAt", { mode: "timestamp" }).notNull(),
});
export const verification = sqliteTable(
"verification",
{
id: text("id")
.notNull()
.primaryKey()
.$defaultFn(() => cuid()),
target: text("target").notNull(),
type: text("type", { enum: ["onboarding", "reset-password"] }).notNull(),
charSet: text("charSet").notNull(),
secret: text("secret").notNull(),
algorithm: text("algorithm").notNull(),
digits: integer("digits").notNull(),
period: integer("period").notNull(),
createdAt: integer("createdAt", { mode: "timestamp" })
.notNull()
.default(sql`DATE('now')`),
expiresAt: integer("expiresAt", { mode: "timestamp" }).notNull(),
},
(verification) => [uniqueIndex("verification_target_type_key").on(verification.target, verification.type)],
);
export const password = sqliteTable("password", {
hash: text("hash").notNull(),
userId: text("userId")
.notNull()
.unique()
.references(() => users.id, { onDelete: "cascade", onUpdate: "cascade" }),
});
export const sessions = sqliteTable(
"sessions",
{
id: text("id")
.notNull()
.primaryKey()
.$defaultFn(() => cuid()),
userId: text("userId")
.notNull()
.references(() => users.id, { onDelete: "cascade" }),
createdAt: integer("createdAt", { mode: "timestamp" })
.notNull()
.default(sql`DATE('now')`),
updatedAt: integer("updatedAt", { mode: "timestamp" }).notNull(),
expiresAt: integer("expiresAt", { mode: "timestamp" }).notNull(),
},
(session) => [index("session_userId_idx").on(session.userId)],
);
export const usersRelations = relations(users, ({ many, one }) => ({
password: one(password),
sessions: many(sessions),
}));
export const passwordRelations = relations(password, ({ one }) => ({
user: one(users, {
relationName: "PasswordToUser",
fields: [password.userId],
references: [users.id],
}),
}));
export const SessionRelations = relations(sessions, ({ one }) => ({
user: one(users, {
relationName: "SessionToUser",
fields: [sessions.userId],
references: [users.id],
}),
}));
import { type Config } from "drizzle-kit";
export default {
dialect: "turso",
schema: "./app/services/drizzle/schema.ts",
dbCredentials: {
url: process.env.DATABASE_URL,
authToken: process.env.DATABASE_AUTH_TOKEN,
},
} satisfies Config;