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 fdd0ace commit 4f70c54Copy full SHA for 4f70c54
lib/db/migrate.ts
@@ -18,7 +18,7 @@ const runMigrate = async () => {
18
console.log('⏳ Running migrations...');
19
20
const start = Date.now();
21
- await migrate(db, { migrationsFolder: './lib/drizzle' });
+ await migrate(db, { migrationsFolder: './lib/db/migrations' });
22
const end = Date.now();
23
24
console.log('✅ Migrations completed in', end - start, 'ms');
0 commit comments