You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
654 B
30 lines
654 B
const sequelize = require("sequelize"); |
|
const db = require("../Config/db"); |
|
|
|
const AppModel = db.define( |
|
"TDMSAPP", // BCMSAPP use for checking user access |
|
{ |
|
USER_ID: { |
|
type: sequelize.STRING, |
|
}, |
|
APP_CODE: { |
|
type: sequelize.STRING, |
|
}, |
|
DB_CODE: { |
|
type: sequelize.STRING, |
|
}, // BRANCH CODE |
|
CREATE_DATE: { |
|
type: sequelize.STRING, |
|
}, |
|
PRESET: { |
|
type: sequelize.STRING, |
|
}, |
|
}, |
|
{ |
|
timestamps: false, |
|
freezeTableName: true, |
|
} |
|
); |
|
AppModel.removeAttribute("id") |
|
|
|
module.exports = AppModel;
|
|
|