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

时间:2017-01-30 08:27:16

标签: node.js sequelize.js sequelize-cli

    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

1 个答案:

答案 0 :(得分:1)

我有同样的问题,我以黑客的方式解决它。创建模型后(如第一个命令),它将id作为主键。所以我更新了模型,"其他的东西"作为我的主键并运行以下命令:

node_modules/.bin/sequelize db:migrate

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

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