right.js 654 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
/**
 * Right schema
 */
module.exports = (sequelize, DataTypes) => {
  let rightSchema = sequelize.define('right', {
    path: {
      type: DataTypes.STRING,
      allowNull: false
    },
    role: {
      type: DataTypes.ENUM('read', 'write', 'manage'),
      allowNull: false,
      defaultValue: 'read'
    },
    exact: {
      type: DataTypes.BOOLEAN,
      allowNull: false,
      defaultValue: false
    },
    allow: {
      type: DataTypes.BOOLEAN,
      allowNull: false,
      defaultValue: false
    }
  }, {
    timestamps: true,
    version: true,
    indexes: [
      {
        fields: ['path']
      }
    ]
  })

  return rightSchema
}