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.
 
 
 

45 lines
908 B

const sequelize = require('sequelize')
const db = require("../Config/db")
const Category = db.define(
"TD_CATEGORY",
{
ID: {
type: sequelize.INTEGER,
primaryKey: true,
autoIncrement: true
},
DB_CODE: {
type: sequelize.STRING
},
ANALYSIS_ID: {
type: sequelize.STRING
},
DESC_KH: {
type: sequelize.STRING
},
DESC_EN: {
type: sequelize.STRING
},
DESC_CN: {
type: sequelize.STRING
},
CREATED_DATE: {
type: sequelize.STRING
},
CREATED_BY: {
type: sequelize.STRING
},
STATUS: {
type: sequelize.INTEGER
}
}, {
timestamps: false,
freezeTableName: true,
}
);
Category.removeAttribute('id');
module.exports = Category;