Skip to content

Commit

Permalink
update schema path in drizzle config
Browse files Browse the repository at this point in the history
  • Loading branch information
jthrilly committed Jun 11, 2024
1 parent f9a9c7b commit 479e0d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/db/drizzle.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import { defineConfig } from 'drizzle-kit';
import { env } from '../../env';

export default defineConfig({
schema: './drizzle/schema.ts',
schema: './lib/db/schema.ts',
dialect: 'postgresql',
out: './drizzle', // where to output the migration files
out: './lib/db', // where to output the migration files
dbCredentials: {
url: env.DATABASE_URL,
},
Expand Down

0 comments on commit 479e0d3

Please sign in to comment.