Skip to content

Commit 3fd1b27

Browse files
committed
chore: wip
1 parent ccc346e commit 3fd1b27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

storage/framework/core/database/src/migrations.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ export async function generateMigrations() {
9090
const modelFiles = glob.sync(path.userModelsPath('*.ts'))
9191

9292
for (const file of modelFiles) {
93-
log.info('Generating migration for:', italic(file))
93+
log.debug('Generating migration for:', file)
9494
await generateMigration(file)
9595
}
9696

97-
log.success('Migrations generated successfully.')
98-
return ok('Migrations generated successfully.')
97+
log.success('Migrations generated')
98+
return ok('Migrations generated')
9999
} catch (error) {
100100
return err(error)
101101
}

0 commit comments

Comments
 (0)