mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
Fix check criteria.
This commit is contained in:
parent
1141b6b7b0
commit
9aa3946ed4
@ -59,7 +59,7 @@ async function run(cmd, args) {
|
||||
async function checkMigrations() {
|
||||
const output = await run('prisma', ['migrate', 'status']);
|
||||
|
||||
const missingMigrations = output.includes('Following migration have not yet been applied');
|
||||
const missingMigrations = output.includes('have not yet been applied');
|
||||
const notManaged = output.includes('The current database is not managed');
|
||||
|
||||
if (notManaged || missingMigrations) {
|
||||
|
Loading…
Reference in New Issue
Block a user