|
|
|
@ -6,27 +6,30 @@ const jwt = require("jsonwebtoken") |
|
|
|
|
const UserModel = db.define( |
|
|
|
|
"TDUSERS", |
|
|
|
|
{ |
|
|
|
|
USER_ID: { |
|
|
|
|
type: sequelize.INTEGER, |
|
|
|
|
primaryKey: true, |
|
|
|
|
}, |
|
|
|
|
USER_CODE: { |
|
|
|
|
type: sequelize.STRING, |
|
|
|
|
primaryKey: true, |
|
|
|
|
}, |
|
|
|
|
USER_NAME: { |
|
|
|
|
type: sequelize.STRING, |
|
|
|
|
}, |
|
|
|
|
USER_PASS: { |
|
|
|
|
USER_DESC: { |
|
|
|
|
type: sequelize.STRING, |
|
|
|
|
}, |
|
|
|
|
USER_DESC: { |
|
|
|
|
FIRST_NAME: { |
|
|
|
|
type: sequelize.STRING, |
|
|
|
|
}, |
|
|
|
|
USER_CPAS: { |
|
|
|
|
LAST_NAME: { |
|
|
|
|
type: sequelize.STRING, |
|
|
|
|
}, |
|
|
|
|
USER_STAT: { |
|
|
|
|
type: sequelize.CHAR, |
|
|
|
|
ADDRESS: { |
|
|
|
|
type: sequelize.STRING, |
|
|
|
|
}, |
|
|
|
|
USER_LOG: { |
|
|
|
|
type: sequelize.CHAR, |
|
|
|
|
PHONE: { |
|
|
|
|
type: sequelize.STRING, |
|
|
|
|
}, |
|
|
|
|
EMAIL: { |
|
|
|
|
type: sequelize.STRING, |
|
|
|
@ -38,10 +41,10 @@ const UserModel = db.define( |
|
|
|
|
type: sequelize.STRING, |
|
|
|
|
}, |
|
|
|
|
USER_STATUS: { |
|
|
|
|
type: sequelize.CHAR, // 1 = Active, 0 = Inactive
|
|
|
|
|
type: sequelize.CHAR, |
|
|
|
|
}, |
|
|
|
|
USER_TYPE: { |
|
|
|
|
type: sequelize.CHAR, // S = Sale , U = User, D = Delivery , C = Customer
|
|
|
|
|
type: sequelize.CHAR, |
|
|
|
|
}, |
|
|
|
|
USER_LOG: { |
|
|
|
|
type: sequelize.STRING, |
|
|
|
|