@inkeep/create-agents 0.11.1 → 0.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/utils.js +1 -0
- package/package.json +1 -1
package/dist/utils.js
CHANGED
|
@@ -374,6 +374,7 @@ async function setupProjectInDatabase(config) {
|
|
|
374
374
|
async function setupDatabase() {
|
|
375
375
|
try {
|
|
376
376
|
// Run drizzle-kit migrate to apply migrations to database
|
|
377
|
+
await execAsync('pnpm db:generate');
|
|
377
378
|
await execAsync('pnpm db:migrate');
|
|
378
379
|
await new Promise((resolve) => setTimeout(resolve, 1000));
|
|
379
380
|
}
|