]>
Commit | Line | Data |
---|---|---|
94a5ff8a C |
1 | import * as Sequelize from 'sequelize' |
2 | ||
3 | async function up (utils: { | |
a1587156 C |
4 | transaction: Sequelize.Transaction |
5 | queryInterface: Sequelize.QueryInterface | |
94a5ff8a C |
6 | sequelize: Sequelize.Sequelize |
7 | }): Promise<void> { | |
8 | await utils.queryInterface.dropTable('job') | |
9 | } | |
10 | ||
11 | function down (options) { | |
12 | throw new Error('Not implemented.') | |
13 | } | |
14 | ||
15 | export { | |
16 | up, | |
17 | down | |
18 | } |