Add accessToken column

This commit is contained in:
Jason Croft 2016-05-11 17:04:45 -04:00
parent 70f6e5bc2c
commit a443490ee6

View file

@ -23,6 +23,9 @@ module.exports = function (sequelize, DataTypes) {
},
history: {
type: DataTypes.TEXT
},
accessToken: {
type: DataTypes.STRING
}
}, {
classMethods: {
@ -72,6 +75,6 @@ module.exports = function (sequelize, DataTypes) {
}
}
});
return User;
};