Barnaby
08/24/2022, 9:22 AMschema.prisma
file without it triggering a migration to drop the table.
Is this possible?
I tried this:
model companies {
// deleted every column here and set to ignore
@@ignore
}
but when I run prisma migrate dev
it wants to drop these columns still, I'd rather just hide this table from prisma entirely so it doesn't want to control it any more.Raphael Etim
08/24/2022, 9:32 AMBarnaby
08/24/2022, 9:37 AMBarnaby
08/24/2022, 9:38 AM