summaryrefslogtreecommitdiff
path: root/src/routers/vault/models/evol/char_reservation.js
blob: f22c9607a5be97279cf0187564059b875553d37f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const Sequelize = require("sequelize"); // from npm registry

module.exports = {
    fields: {
        name: { // char name
            type: Sequelize.STRING(30),
            primaryKey: true,
            allowNull: false,
        },
    },
    options: {
        engine: "InnoDB",
    }
};