]>
Commit | Line | Data |
---|---|---|
47564bbe | 1 | import * as Sequelize from 'sequelize' |
c1e791ba | 2 | import { Migration } from '../../models/migrations' |
47564bbe C |
3 | |
4 | async function up (utils: { | |
5 | transaction: Sequelize.Transaction, | |
6 | queryInterface: Sequelize.QueryInterface, | |
7 | sequelize: Sequelize.Sequelize | |
8 | }): Promise<void> { | |
9 | const data = { | |
10 | type: Sequelize.BOOLEAN, | |
11 | allowNull: false, | |
12 | defaultValue: true | |
c1e791ba | 13 | } as Migration.Boolean |
47564bbe C |
14 | await utils.queryInterface.addColumn('video', 'commentsEnabled', data) |
15 | ||
16 | data.defaultValue = null | |
17 | return utils.queryInterface.changeColumn('video', 'commentsEnabled', data) | |
18 | } | |
19 | ||
20 | function down (options) { | |
21 | throw new Error('Not implemented.') | |
22 | } | |
23 | ||
24 | export { | |
25 | up, | |
26 | down | |
27 | } |