1
    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"

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

谢谢

这是错误

在此处输入图像描述

4

1 回答 1

1

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

node_modules/.bin/sequelize db:migrate

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

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

于 2017-07-11T20:00:05.000 回答