Alter schema + add form field

This commit is contained in:
Owen
2026-05-28 20:15:13 -07:00
parent a32acf7c69
commit a9b0bd8b47
5 changed files with 253 additions and 1 deletions

15
drizzle.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { APP_PATH } from "@server/lib/consts";
import { defineConfig } from "drizzle-kit";
import path from "path";
const schema = [path.join("server", "db", "sqlite", "schema")];
export default defineConfig({
dialect: "sqlite",
schema: schema,
out: path.join("server", "migrations"),
verbose: true,
dbCredentials: {
url: path.join(APP_PATH, "db", "db.sqlite")
}
});