summaryrefslogtreecommitdiff
path: root/src/routers/vault/models/evol/login.js
blob: be37f079d54f9ca7e1848b5cb77e529097b34ab4 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
const Sequelize = require("sequelize"); // from npm registry

module.exports = {
    fields: {
        accountId: {
            type: Sequelize.INTEGER.UNSIGNED,
            primaryKey: true,
            autoIncrement: true,
            allowNull: false,
        },
        userid: { // username
            type: Sequelize.STRING(23),
            allowNull: false,
            defaultValue: "",
        },
        userPass: { // plaintext
            type: Sequelize.STRING(32),
            allowNull: false,
            defaultValue: "",
        },
        sex: { // NOTE: we must exclude S
            type: Sequelize.ENUM("M", "F", "S"), // TODO: add N when evol-hercules supports it
            allowNull: false,
            defaultValue: "M", // TODO: change to N
        },
        email: { // limited email length
            type: Sequelize.STRING(39),
            allowNull: false,
            defaultValue: "",
        },
        groupId: {
            type: Sequelize.INTEGER,
            allowNull: false,
            defaultValue: 0,
        },
        state: {
            type: Sequelize.INTEGER.UNSIGNED,
            allowNull: false,
            defaultValue: 0,
        },
        unbanTime: {
            type: Sequelize.INTEGER.UNSIGNED,
            allowNull: false,
            defaultValue: 0,
        },
        expirationTime: {
            type: Sequelize.INTEGER.UNSIGNED,
            allowNull: false,
            defaultValue: 0,
        },
        logincount: {
            type: Sequelize.INTEGER.UNSIGNED,
            allowNull: false,
            defaultValue: 0,
        },
        lastlogin: {
            type: Sequelize.DATE,
            allowNull: true,
        },
        lastIp: {
            type: Sequelize.STRING(100),
            allowNull: false,
            defaultValue: "",
        },
        birthdate: {
            type: Sequelize.DATE,
            allowNull: true,
        },
        characterSlots: {
            type: Sequelize.INTEGER.UNSIGNED,
            allowNull: false,
            defaultValue: 0, // 0 means MAX_CHARS(12)
        },
        pincode: {
            type: Sequelize.STRING(4), // TODO: use this for TOTP
            allowNull: false,
            defaultValue: "",
        },
        pincodeChange: {
            type: Sequelize.INTEGER.UNSIGNED,
            allowNull: false,
            defaultValue: 0,
        },
    },
    options: {
        engine: "InnoDB",
        initialAutoIncrement: 2000000,
        indexes: [
            {
                fields: ["userid"],
            }
        ]
    }
};