mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 09:02:01 +01:00
11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
module.exports = (sequelize, DataTypes) =>
|
|
sequelize.define('setting', {
|
|
key: {
|
|
type: DataTypes.STRING,
|
|
primaryKey: true,
|
|
allowNull: false,
|
|
index: true
|
|
},
|
|
value: DataTypes.JSON,
|
|
is_secret: DataTypes.BOOLEAN
|
|
})
|