123456789101112131415161718192021222324252627 |
- import * as Sequelize from 'sequelize'
- import { Migration } from '../../models/migrations'
- async function up (utils: {
- transaction: Sequelize.Transaction,
- queryInterface: Sequelize.QueryInterface,
- sequelize: Sequelize.Sequelize
- }): Promise<void> {
- const data = {
- type: Sequelize.BOOLEAN,
- allowNull: false,
- defaultValue: true
- } as Migration.Boolean
- await utils.queryInterface.addColumn('video', 'downloadEnabled', data)
- data.defaultValue = null
- return utils.queryInterface.changeColumn('video', 'downloadEnabled', data)
- }
- function down (options) {
- throw new Error('Not implemented.')
- }
- export {
- up,
- down
- }
|