11
This commit is contained in:
@@ -200,6 +200,18 @@ module.exports = (db) => {
|
||||
type: Sequelize.DATE,
|
||||
allowNull: true
|
||||
},
|
||||
is_delivered: {
|
||||
comment: '是否已投递成功:true 是,false 否(含未投、失败、过滤)',
|
||||
type: Sequelize.BOOLEAN,
|
||||
allowNull: false,
|
||||
defaultValue: false
|
||||
},
|
||||
deliver_failed_reason: {
|
||||
comment: '未投递或投递失败原因(直接落库,不依赖连表)',
|
||||
type: Sequelize.TEXT,
|
||||
allowNull: true,
|
||||
defaultValue: ''
|
||||
},
|
||||
chatStatus: {
|
||||
comment: '聊天状态: none-未聊天, sent-已发送, replied-已回复',
|
||||
type: Sequelize.STRING(20),
|
||||
|
||||
Reference in New Issue
Block a user