1
This commit is contained in:
@@ -41,6 +41,12 @@ module.exports = (db) => {
|
||||
type: Sequelize.INTEGER,
|
||||
allowNull: false,
|
||||
defaultValue: 0
|
||||
},
|
||||
pla_account_id: {
|
||||
comment: '关联账户ID(pla_account.id,可选;AI 根据 get_job_listings 更新本行时写入)',
|
||||
type: Sequelize.INTEGER,
|
||||
allowNull: true,
|
||||
defaultValue: null
|
||||
}
|
||||
}, {
|
||||
timestamps: false,
|
||||
@@ -52,6 +58,10 @@ module.exports = (db) => {
|
||||
{
|
||||
unique: false,
|
||||
fields: ['name']
|
||||
},
|
||||
{
|
||||
unique: false,
|
||||
fields: ['pla_account_id']
|
||||
}
|
||||
]
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user