为用户编辑的内容实施版本控制系统的最佳方法
我需要让用户编辑彼此的条目。因此,如果出现错误条目,我需要能够返回到早期版本。
在数据层实现这一点的最佳方法是什么?我应该有一个分类表吗?一旦管理员批准编辑,分类版本就会被复制并放入主条目表中?
你们会怎么做?
谢谢, 亚历克斯
I have a requirement to let users edit each others entries. So in case of bad entries, I need to be able to go back to an earlier version.
What is the best way to implement this in the data layer? Should I have like a triage table? And once the admin approves the edit, the triage version gets copied and put into the main entries table?
How would you guys do this?
Thanks,
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个答案可能对你有用。
滚动您自己的纯文本 Wiki(数据库内的 Wiki )
This answer may work for you.
Rolling Your Own Plaintext Wiki (Wiki inside a DB)
我知道您正在考虑数据库,但您可能想考虑使用 Mercurial 或 Git 作为应用程序的后端。它不会像数据库一样工作,但您将拥有完整的版本控制。
I know you're thinking in terms of a database, but you may want to look in to using Mercurial or Git as the back-end to your application. It won't work like a database, but you'll have full version control.