Django 更新 slug 字段
我有一个问题,我的模型没有 slug 字段,所以现在我需要添加一个 slug 字段,但是我的模型充满了数据,我使用 django 进化并且很酷添加了新的 slug 字段...但是如何更新slug 字段包含标题字段中的数据?
谢谢
i have a problem, my model was without slug field, so now i need to add a slug field, but my models is full of data, im using django evolution and was cool added the new slug field...but how ill update the slug fiel with the data form the title field at once?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要这个:
http://south.aeracode.org/
它将允许您修改您的架构,但保留您的数据完好无损。
You want this:
http://south.aeracode.org/
It will allow you to modify your schema but keep your data intact.