Fix check criteria.
parent
1141b6b7b0
commit
9aa3946ed4
|
@ -59,7 +59,7 @@ async function run(cmd, args) {
|
||||||
async function checkMigrations() {
|
async function checkMigrations() {
|
||||||
const output = await run('prisma', ['migrate', 'status']);
|
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');
|
const notManaged = output.includes('The current database is not managed');
|
||||||
|
|
||||||
if (notManaged || missingMigrations) {
|
if (notManaged || missingMigrations) {
|
||||||
|
|
Loading…
Reference in New Issue