codimd/lib/migrations/20180209120907-longtext-of-authorship.ts
Raccoon 147c20064f
ts: all migrations
Signed-off-by: Raccoon <raccoon@hackmd.io>
2021-06-16 18:35:28 +08:00

12 lines
491 B
TypeScript

export = {
up: async function (queryInterface, Sequelize) {
await queryInterface.changeColumn('Notes', 'authorship', {type: Sequelize.TEXT('long')})
await queryInterface.changeColumn('Revisions', 'authorship', {type: Sequelize.TEXT('long')})
},
down: async function (queryInterface, Sequelize) {
await queryInterface.changeColumn('Notes', 'authorship', {type: Sequelize.TEXT})
await queryInterface.changeColumn('Revisions', 'authorship', {type: Sequelize.TEXT})
}
}