create permission model
This commit is contained in:
parent
0d5b27dac6
commit
739295b162
|
@ -0,0 +1,38 @@
|
||||||
|
const { Model, DataTypes } = require('sequelize');
|
||||||
|
const { sequelize } = require('.');
|
||||||
|
|
||||||
|
class Permission extends Model {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
Permission.structure = {
|
||||||
|
// id: {
|
||||||
|
// type: DataTypes.BIGINT,
|
||||||
|
// primaryKey: true,
|
||||||
|
// autoIncrement: true,
|
||||||
|
// allowNull: false
|
||||||
|
// },
|
||||||
|
user: {
|
||||||
|
type: DataTypes.BIGINT,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
permission: {
|
||||||
|
type: DataTypes.TEXT,
|
||||||
|
allowNull: false
|
||||||
|
},
|
||||||
|
value: {
|
||||||
|
type: DataTypes.BIGINT,
|
||||||
|
allowNull: false
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
let init = (sequelize, DataTypes) => {
|
||||||
|
let perm = Permission.init(Permission.structure, {
|
||||||
|
sequelize,
|
||||||
|
modelName: 'Permission',
|
||||||
|
tableName: 'permissions'
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
init.class = Permission;
|
||||||
|
module.exports = init;
|
Loading…
Reference in New Issue