gpt4 book ai didi

node.js - 如何使用自定义名称在 sequelize-cli 中定义自定义主键

转载 作者:行者123 更新时间:2023-12-03 22:20:14 25 4
gpt4 key购买 nike

    sequelize model:create --name tasks --force --attributes "title:string,description:text, data_type:text, shift:str
ing, date:date, start_time:time, end_time:time, type:string, location:string, visible_to_helpers:date, reminders_to_helpers:integer, created_date:time, modifi
ed_date:time"

我试过这个。它正在工作,但它使用 id 创建主键,我想要一些 task_id

但是当我尝试这个时它给了我错误
    equelize model:create --name tasks --force --attributes "task_id:{type:integer, primaryKey: true,autoIncrement:
true}, title:string,description:text, data_type:text, shift:string, date:date, start_time:time, end_time:time, type:string, location:string, visible_to_helpe
rs:date, reminders_to_helpers:integer, created_date:time, modified_date:time"

并且在所有小写字母的情况下也不起作用

谢谢

这是错误

enter image description here

最佳答案

我遇到了同样的问题,我以 hacky 的方式解决了它。创建模型后(就像您的第一个命令),它将 id 作为主键。所以我更新模型,“别的东西”作为我的主键并运行以下命令:

node_modules/.bin/sequelize db:migrate

它对我有用。这是我遵循的指南链接:

http://mherman.org/blog/2015/10/22/node-postgres-sequelize/#.WWUr49MrIsk

关于node.js - 如何使用自定义名称在 sequelize-cli 中定义自定义主键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41931520/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com