如何使表中的列名成为具有持久性的主键?
这是我的模型,
>Test
testID Int
product Text
firmware Text
startDate Day
estimatedFinishDate Day
status Text
UniqueStartDate startDate
UniqueEstimatedFinishDate estimatedFinishDate
UniqueTestID testID
我希望 testID 作为主键。我该怎么做?
Here's my model
>Test
testID Int
product Text
firmware Text
startDate Day
estimatedFinishDate Day
status Text
UniqueStartDate startDate
UniqueEstimatedFinishDate estimatedFinishDate
UniqueTestID testID
I would like testID to be the primary key. How do I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样,我相信:
用持久>=0.6.1。 (提交)
Like so, I believe:
with persistent >= 0.6.1. (commit)