summaryrefslogtreecommitdiff
path: root/src/routers/vault/models/evol/char_reservation.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/routers/vault/models/evol/char_reservation.js')
-rw-r--r--src/routers/vault/models/evol/char_reservation.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/routers/vault/models/evol/char_reservation.js b/src/routers/vault/models/evol/char_reservation.js
new file mode 100644
index 0000000..f22c960
--- /dev/null
+++ b/src/routers/vault/models/evol/char_reservation.js
@@ -0,0 +1,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",
+ }
+};