Neon and Migrations
My current node.js app uses Sequelize. When I update my schema in Sequelize, and call:
myModel.sync() with alter == true
...Sequelize automatically updates my database tables to match the new schema.
I see that Neon supports Migrations. I've had a lot of experience with Django migrations when developing in Python.
Does Neon require Django-style migrations tables?2 Replies
uncomfortable-jade•2y ago
Neon works with any postgres migration tool. Neon has no internal logic about database migrations, they are just sql queries at the end of the day.
statutory-emeraldOP•2y ago
Okay, that's good news.