summaryrefslogtreecommitdiff
path: root/src/routers/vault/models/vault/account_log.js
blob: 20867b003f5971ce34ff9c19dcf254ee645f6d76 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const Sequelize = require("sequelize"); // from npm registry

module.exports = {
    fields: {
        id: {
            type: Sequelize.INTEGER.UNSIGNED,
            primaryKey: true,
            autoIncrement: true,
            allowNull: false,
        },
        vaultId: {
            type: Sequelize.INTEGER.UNSIGNED,
            allowNull: false,
        },
        accountType: {
            type: Sequelize.ENUM("EVOL", "LEGACY", "FORUMS", "WIKI"),
            allowNull: false,
        },
        accountId: {
            type: Sequelize.INTEGER.UNSIGNED,
            allowNull: false,
        },
        actionType: {
            type: Sequelize.ENUM("CREATE", "DELETE", "LINK", "UNLINK", "UPDATE"),
            allowNull: false,
            defaultValue: "CREATE",
        },
        details: {
            type: Sequelize.STRING,
            allowNull: true,
        },
        ip: {
            type: "VARBINARY(16)",
            allowNull: false,
            set (raw) {
                this.setDataValue("ip", Sequelize.fn("INET6_ATON", raw));
            },
        },
        date: {
            type: Sequelize.DATE,
            allowNull: false,
            defaultValue: Sequelize.NOW,
        },
    },
    options: {
        indexes: [
            { fields: ["vault_id"] },
            { fields: ["account_id"] },
            { fields: ["ip"] },
        ]
    }
};