英文:
Tables must be fixed in migrations
问题
"Tables must be fixed in migrations" 的意思是什么?我正在做一个构建应用的测试任务,其中一个要求是“在迁移中必须固定表格”。我在使用 MongoDB 和 Node.js。
英文:
I have a test task to build an app, and one of the requirements is "Tables must be fixed in migrations". What does it exactly mean?
I use MongoDB and Node.js
答案1
得分: 1
这意味着您需要使用迁移脚本来执行某些数据库操作。
其目的是保持数据库模式或数据库中的任何数据与代码版本同步。
> 每次发布时,我们应该能够快速、可靠地更新数据库,而不会影响现有数据,并在最坏情况下具备回滚的可能性。
这是关于数据库模式迁移的 SQL 文章。
这是一篇关于mongoDB自动迁移的文章。
英文:
This means that you need to use a migration script to operate some database operations.
It aims to maintain the database schema or any data in the db up to the code version.
> With each release, we should be able to do a fast, reliable database update without compromising existing data and have a possibility of rollback in case of the worst-case scenario.
This is from an sql article about database schema migrations
Here is an article about mongoDB automated migration
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论