summaryrefslogtreecommitdiffstats
path: root/server/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'server/migrations')
-rw-r--r--server/migrations/20190223034423-create-iprange.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/migrations/20190223034423-create-iprange.js b/server/migrations/20190223034423-create-iprange.js
index 75d6d6f..d38a4ac 100644
--- a/server/migrations/20190223034423-create-iprange.js
+++ b/server/migrations/20190223034423-create-iprange.js
@@ -9,10 +9,10 @@ module.exports = {
type: Sequelize.INTEGER
},
startIp: {
- type: Sequelize.STRING
+ type: Sequelize.BIGINT
},
endIp: {
- type: Sequelize.STRING(2048)
+ type: Sequelize.BIGINT
},
groupId: {
allowNull: false,