summaryrefslogtreecommitdiff
path: root/src/routers/vault/models/vault/login.js
blob: 1c9c51e0a12db69f7914dd5bab2c2649fe2cd731 (plain) (blame)
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
const Sequelize = require("sequelize"); // from npm registry

module.exports = {
    fields: {
        id: {
            type: Sequelize.INTEGER.UNSIGNED,
            primaryKey: true,
            autoIncrement: true,
            allowNull: false,
        },
        primaryIdentity: {
            type: Sequelize.INTEGER.UNSIGNED,
            allowNull: true,
        },
        allowNonPrimary: {
            type: Sequelize.BOOLEAN,
            defaultValue: true,
            allowNull: false,
        },
        creationDate: {
            type: Sequelize.DATE,
            allowNull: false,
            defaultValue: Sequelize.NOW,
        },
        state: {
            type: Sequelize.ENUM("OK", "BANNED"),
            allowNull: false,
            defaultValue: "OK",
        },
    }
};