]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - 0145-delete-author.ts
6c9427997b0e9fdbbfbf81d4a23a9c90a432a7cc
[github/Chocobozzz/PeerTube.git] / 0145-delete-author.ts
1 import * as Sequelize from 'sequelize'
2
3 async function up (utils: {
4 transaction: Sequelize.Transaction
5 queryInterface: Sequelize.QueryInterface
6 sequelize: Sequelize.Sequelize
7 }): Promise<void> {
8 await utils.queryInterface.dropTable('Authors')
9 }
10
11 function down (options) {
12 throw new Error('Not implemented.')
13 }
14
15 export {
16 up,
17 down
18 }