mirror of
https://github.com/outline/outline.git
synced 2026-06-28 18:54:24 +03:00
15 lines
325 B
JavaScript
15 lines
325 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
async up (queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("authentications", "refreshToken", {
|
|
type: Sequelize.BLOB,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
|
|
async down (queryInterface) {
|
|
await queryInterface.removeColumn("authentications", "refreshToken");
|
|
}
|
|
};
|