fix revisions backup data type (#1274)

This commit is contained in:
Ante Primorac 2020-05-20 19:50:52 +02:00 committed by GitHub
parent 7f9cd51f37
commit aed76c7bcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ module.exports = {
allowNull: true,
});
await queryInterface.addColumn('revisions', 'backup', {
type: Sequelize.SMALLINT,
type: Sequelize.TEXT,
allowNull: true,
});
},