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.
27 lines
495 B
27 lines
495 B
8 months ago
|
const sequelize = require('sequelize')
|
||
|
const db = require('../Config/db')
|
||
|
|
||
|
const SupplierDeliveryModel = db.define(
|
||
|
'TDDELA',
|
||
|
{
|
||
|
ADD_CODE: {
|
||
|
type: sequelize.STRING,
|
||
|
primaryKey: true
|
||
|
},
|
||
|
DEL_CODE: {
|
||
|
type: sequelize.STRING,
|
||
|
primaryKey: true
|
||
|
|
||
|
},
|
||
|
|
||
|
|
||
|
},
|
||
|
{
|
||
|
timestamps: false,
|
||
|
freezeTableName: true,
|
||
|
}
|
||
|
)
|
||
|
|
||
|
|
||
|
SupplierDeliveryModel.removeAttribute('id')
|
||
|
module.exports = SupplierDeliveryModel;
|