Tables must be fixed in migrations 表格必须在迁移中修复

huangapple go评论60阅读模式
英文:

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

huangapple
  • 本文由 发表于 2023年5月25日 16:24:32
  • 转载请务必保留本文链接:https://go.coder-hub.com/76330261.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定