From e14c48719e8fb4014456953c31e9111c5e03d189 Mon Sep 17 00:00:00 2001 From: Loay Date: Mon, 5 Dec 2016 11:42:08 -0500 Subject: [PATCH] Fix MySql CI server Failure --- test/persistence-hooks.suite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/persistence-hooks.suite.js b/test/persistence-hooks.suite.js index f772f35f..896599a7 100644 --- a/test/persistence-hooks.suite.js +++ b/test/persistence-hooks.suite.js @@ -44,7 +44,7 @@ module.exports = function(dataSource, should, connectorCapabilities) { }); GeoModel = dataSource.createModel('GeoModel', { - id: {type: String, id: true}, + id: {type: String, id: true, default: uid.next}, name: {type: String, required: false}, location: {type: GeoPoint, required: false}, });