maniajs
Version:
ManiaPlanet (Dedicated) Server Controller.
31 lines (28 loc) • 544 B
JavaScript
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = function (sequelize, DataTypes) {
var Map = sequelize.define('Map', {
uid: {
type: DataTypes.STRING,
allowNull: false
},
name: {
type: DataTypes.STRING,
allowNull: false
},
author: {
type: DataTypes.STRING,
allowNull: false
},
environment: {
type: DataTypes.STRING,
allowNull: false
}
}, {
tableName: 'core__map',
charset: 'utf8'
});
return Map;
};