mirror of https://github.com/status-im/codimd.git
Add accessToken column
This commit is contained in:
parent
70f6e5bc2c
commit
a443490ee6
|
@ -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;
|
||||
};
|
Loading…
Reference in New Issue