summaryrefslogtreecommitdiffstats
path: root/server/migrations/20190413172133-change-externalid-type.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/migrations/20190413172133-change-externalid-type.js')
-rw-r--r--server/migrations/20190413172133-change-externalid-type.js4
1 files changed, 2 insertions, 2 deletions
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)
})
])
})