Is there a way to backfill existing records for a ...
# prisma-migrate
j
Is there a way to backfill existing records for a migration? Say I'm adding a new relation column like
author_id
on a post, how can I (for sake of asking the question), execute a select few to have one author_id another others a different author_id for a migration?
my current workaround - switched to using knex to handle migrations and lets prism deal with modeling.