用于版本控制和多种语言的数据库结构

发布于 2024-09-03 02:50:03 字数 310 浏览 8 评论 0原文

如何解决内容多版本、多语言的问题?

我当前的结构:

每个内容在每种语言中只能有一个活动版本,这就是我很好奇如何最好地解决的原因。

现在,我有一列 contentversions 表,这意味着对于活动版本的每次更改,我都必须运行更新并在所有版本上设置 active=false,然后更新以设置相关内容的active=true

How can I solve the issue of content existing in multiple versions and multiple languages?

My current structure:

Each content can only have one active version in each language, and that's how I'm curious on how to best solve.

Right now I have a column of the contentversions table, which means for each change of active version I have to run a update and set active=false on all version and then a update to set active=true for the piece of content in question.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

短叹 2024-09-10 02:50:03

您可以使用与 content_contentversion_languages 结构相同的表 activeversion,但在 (content_id, language_id) 上有一个唯一键和一个外键在所有列上,引用 content_contentversion_languages。将新版本标记为活动版本只需对此表执行一次 INSERT 或 UPDATE 操作。

You could use a table activeversion with the same structure as content_contentversion_languages, but with a unique key on (content_id, language_id) and a single foreign key on all columns, referencing content_contentversion_languages. Marking a new version as active requires just a single INSERT or UPDATE to this table.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文