]>
Commit | Line | Data |
---|---|---|
7efe153b AL |
1 | import * as Sequelize from 'sequelize' |
2 | import * as Promise from 'bluebird' | |
3 | ||
4 | function up (utils: { | |
5 | transaction: Sequelize.Transaction, | |
6 | queryInterface: Sequelize.QueryInterface, | |
7 | sequelize: Sequelize.Sequelize | |
8 | }): Promise<void> { | |
9 | const q = utils.queryInterface | |
10 | ||
11 | const data = { | |
12 | type: Sequelize.BOOLEAN, | |
13 | allowNull: false, | |
14 | defaultValue: true | |
15 | } | |
16 | ||
17 | return q.addColumn('user', 'autoPlayVideo', data) | |
18 | } | |
19 | ||
20 | function down (options) { | |
21 | throw new Error('Not implemented.') | |
22 | } | |
23 | ||
24 | export { | |
25 | up, | |
26 | down | |
27 | } |