Hi there! I want to know how is your workflow for backfilling data with Prisma❓
Scenario: Add a new column (not nullable and unique) for an existing table full of data.
Currently I'm doing the following:
• create the migration at hand (NOT using Prisma Migrate tool)
• add SQL script for adding new column (without nullabe and unique constraints)
• add SQL script for backfilling data
• add constraints to column
there are other alternatives? maybe using seeds files? I would love to use Prisma Client code to backffill my database, but I'm not sure if there is any way to do it.