Create 20201123123624-face.js

This commit is contained in:
Troplo 2020-11-23 23:47:13 +11:00
parent ff3e10cacf
commit f0923b0a60
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
module.exports = {
up(queryInterface, Sequelize) {
return Promise.all([
queryInterface.addColumn(
'Users',
'faceId',
{
type: Sequelize.BIGINT,
defaultValue: 0,
default: 0
},
)
]);
},
}