]>
Commit | Line | Data |
---|---|---|
d1ab89de C |
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 | db: any | |
8 | }): Promise<void> { | |
9 | const data = { | |
10 | type: Sequelize.STRING(400), | |
11 | allowNull: true, | |
12 | defaultValue: null | |
13 | } | |
14 | ||
15 | await utils.queryInterface.addColumn('user', 'pendingEmail', data) | |
16 | } | |
17 | ||
18 | function down (options) { | |
19 | throw new Error('Not implemented.') | |
20 | } | |
21 | ||
22 | export { | |
23 | up, | |
24 | down | |
25 | } |