Skip to content

Commit 4f70c54

Browse files
Fix migrate script
1 parent fdd0ace commit 4f70c54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/db/migrate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const runMigrate = async () => {
1818
console.log('⏳ Running migrations...');
1919

2020
const start = Date.now();
21-
await migrate(db, { migrationsFolder: './lib/drizzle' });
21+
await migrate(db, { migrationsFolder: './lib/db/migrations' });
2222
const end = Date.now();
2323

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

0 commit comments

Comments
 (0)