summaryrefslogblamecommitdiff
path: root/src/routers/vault/models/vault/identity.js
blob: 1496ae296246ec622fcfbc6faf1bbb976570831c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                            







                                        






                                        

                              










                                                                                                       
const Sequelize = require("sequelize"); // from npm registry

module.exports = {
    fields: {
        id: {
            type: Sequelize.INTEGER.UNSIGNED,
            primaryKey: true,
            autoIncrement: true,
            allowNull: false,
        },
        userId: {
            type: Sequelize.INTEGER.UNSIGNED,
            allowNull: false,
        },
        email: {
            type: Sequelize.STRING(320),
            allowNull: false,
        },
        totp: {
            type: Sequelize.STRING(32),
            allowNull: true,
        },
        pass: {
            type: Sequelize.STRING(128),
            allowNull: true,
        },
        addedDate: {
            type: Sequelize.DATE,
            allowNull: false,
            defaultValue: Sequelize.NOW,
        },
    },
    options: {
        tableName: "identity",
        freezeTableName: true,
        indexes: [
            {
                fields: ["user_id"],  // BUG: table option {underscored: true} does not work on indexes
            },
            {
                fields: ["email"],
                unique: true,
            }
        ]
    }
};