1
This commit is contained in:
@@ -52,6 +52,18 @@ module.exports = (db) => {
|
||||
allowNull: false,
|
||||
defaultValue: 1
|
||||
},
|
||||
is_online: {
|
||||
comment: '设备在线状态(1=在线,0=离线)',
|
||||
type: Sequelize.TINYINT(1),
|
||||
allowNull: false,
|
||||
defaultValue: 0
|
||||
},
|
||||
is_logged_in: {
|
||||
comment: '平台登录状态(1=已登录,0=未登录)',
|
||||
type: Sequelize.TINYINT(1),
|
||||
allowNull: false,
|
||||
defaultValue: 0
|
||||
},
|
||||
job_type_id: {
|
||||
comment: '职位类型ID(关联 job_types 表)',
|
||||
type: Sequelize.INTEGER,
|
||||
|
||||
Reference in New Issue
Block a user