Files

12 lines
237 B
JavaScript
Raw Permalink Normal View History

module.exports = (sequelize, DataTypes) =>
sequelize.define('setting', {
2020-06-24 14:20:29 +02:00
key: {
type: DataTypes.STRING,
primaryKey: true,
allowNull: false,
index: true
},
value: DataTypes.JSON,
is_secret: DataTypes.BOOLEAN
})