This commit is contained in:
张成
2026-04-08 15:28:02 +08:00
parent bfd39eddcf
commit 048c40d802
5 changed files with 231 additions and 2 deletions

View File

@@ -41,6 +41,12 @@ module.exports = (db) => {
type: Sequelize.INTEGER,
allowNull: false,
defaultValue: 0
},
pla_account_id: {
comment: '关联账户IDpla_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']
}
]
});