From a980baac104ab000e5e6ba5f3e7e01e307304959 Mon Sep 17 00:00:00 2001 From: Jannik Schönartz Date: Mon, 15 Apr 2019 19:07:13 +0200 Subject: [server] Small bug fixes on the production server --- server/migrations/20190413172133-change-externalid-type.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/migrations') diff --git a/server/migrations/20190413172133-change-externalid-type.js b/server/migrations/20190413172133-change-externalid-type.js index e1a0c33..665dcb0 100644 --- a/server/migrations/20190413172133-change-externalid-type.js +++ b/server/migrations/20190413172133-change-externalid-type.js @@ -4,11 +4,11 @@ module.exports = { return Promise.all([ queryInterface.changeColumn('backend_x_client', 'externalId', { allowNull: false, - type: Sequelize.STRING + type: Sequelize.STRING(128) }), queryInterface.changeColumn('backend_x_group', 'externalId', { allowNull: false, - type: Sequelize.STRING + type: Sequelize.STRING(128) }) ]) }) -- cgit v1.2.3-55-g7522