Wasp couldn't parse your schema.prisma file, please check if you have any errors in it.prisma validate --schema=./schema.prismaThe schema at schema.prisma is valid 🚀schema.prisma file that triggers the error:someField String[] @default([]) line. Setting the default value to @default([]) is causing the command to fail, even though this syntax worked in earlier versions of Wasp.@default([]) from the schema and rerun wasp db migrate-dev, the migration proceeds without errors.