We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af5be91 commit 5b27a2dCopy full SHA for 5b27a2d
.github/workflows/push.yml
@@ -30,7 +30,7 @@ jobs:
30
run: pnpm install
31
32
- name: Migrate Database
33
- run: pnpm run workflow:migrate-db
+ run: pnpm run migrate
34
35
- name: 🚀 Deploy Trigger.dev
36
env:
drizzle.config.ts
@@ -0,0 +1,10 @@
1
+import { defineConfig } from "drizzle-kit";
2
+
3
+export default defineConfig({
4
+ dbCredentials: {
5
+ url: process.env.DATABASE_URL!,
6
+ },
7
+ dialect: "postgresql",
8
+ schema: "./src/lib/schema.ts",
9
+ out: "./migrations",
10
+});
0 commit comments