Elevation field needs to be signed (#26)

pull/108/head
Candid Dauth 2017-04-28 03:39:44 +02:00
rodzic 2211fc5523
commit de474b6653
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -49,7 +49,7 @@ module.exports = function(Database) {
lon: this._TYPES.lon,
zoom: { type: Sequelize.INTEGER.UNSIGNED, allowNull: false, validate: { min: 1, max: 20 } },
idx: { type: Sequelize.INTEGER.UNSIGNED, allowNull: false },
ele: { type: Sequelize.INTEGER.UNSIGNED, allowNull: true }
ele: { type: Sequelize.INTEGER, allowNull: true }
});
this._conn.define("LineData", this._TYPES.dataDefinition);