This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/migrations/20210110143902-collection-r...

20 lines
354 B
JavaScript

"use strict";
module.exports = {
up: async (queryInterface, Sequelize) => {
return queryInterface.renameColumn(
"collections",
"creatorId",
"createdById"
);
},
down: async (queryInterface, Sequelize) => {
return queryInterface.renameColumn(
"collections",
"createdById",
"creatorId"
);
},
};