Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to efficiently change table and column names, using prisma?

I want to use prisma on an existing database. Now that I'm researching it, I realise that all my tables and columns are incorrectly named. I would like to correct the names, but I don't want to lose my data.

I did a prisma "pull" so I have a schema of my current database. But then I don't quite understand how (if possible) do I rename my tables and columns using the schema.

What are my options? Can I change the schema.prisma and make prisma take care of all the "alter" statements? How do I do this?

like image 293
birgersp Avatar asked Jan 22 '26 10:01

birgersp


1 Answers

It's not natively supported yet. There is a Feature Request to handle renames effectively.

You can use this technique to rename your tables and fields without dropping the data.

  1. Create an empty migration file with prisma migrate dev --create-only
  2. Add sql: ALTER TABLE IF EXISTS "OldName" RENAME TO "NewName";
  3. Change table name in schema.prisma file
  4. Run prisma migrate dev
like image 54
Nurul Sundarani Avatar answered Jan 24 '26 10:01

Nurul Sundarani



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!