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.
28 lines
541 B
28 lines
541 B
4 years ago
|
import _sequelize from 'sequelize';
|
||
|
const { Model, Sequelize } = _sequelize;
|
||
|
|
||
|
export default class educationlevel extends Model {
|
||
|
static init(sequelize, DataTypes) {
|
||
|
super.init({
|
||
|
ID: {
|
||
|
type: DataTypes.SMALLINT,
|
||
|
allowNull: true,
|
||
|
primaryKey: true
|
||
|
},
|
||
|
Code: {
|
||
|
type: DataTypes.SMALLINT,
|
||
|
allowNull: true
|
||
|
},
|
||
|
Value: {
|
||
|
type: DataTypes.STRING(100),
|
||
|
allowNull: true
|
||
|
}
|
||
|
}, {
|
||
|
sequelize,
|
||
|
tableName: 'educationlevel',
|
||
|
timestamps: false
|
||
|
});
|
||
|
return educationlevel;
|
||
|
}
|
||
|
}
|