Skip to content

Commit

Permalink
Fix migrate script
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyphilemon committed Nov 20, 2024
1 parent fdd0ace commit 4f70c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/db/migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const runMigrate = async () => {
console.log('⏳ Running migrations...');

const start = Date.now();
await migrate(db, { migrationsFolder: './lib/drizzle' });
await migrate(db, { migrationsFolder: './lib/db/migrations' });
const end = Date.now();

console.log('✅ Migrations completed in', end - start, 'ms');
Expand Down

0 comments on commit 4f70c54

Please sign in to comment.