1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- import * as Sequelize from 'sequelize'
- async function up (utils: {
- transaction: Sequelize.Transaction,
- queryInterface: Sequelize.QueryInterface,
- sequelize: Sequelize.Sequelize,
- db: any
- }): Promise<void> {
- {
- const data = {
- type: Sequelize.STRING(1000),
- allowNull: true,
- defaultValue: null
- }
- await utils.queryInterface.changeColumn('video', 'support', data)
- }
- {
- const data = {
- type: Sequelize.STRING(1000),
- allowNull: true,
- defaultValue: null
- }
- await utils.queryInterface.changeColumn('videoChannel', 'support', data)
- }
- {
- const data = {
- type: Sequelize.STRING(1000),
- allowNull: true,
- defaultValue: null
- }
- await utils.queryInterface.changeColumn('videoChannel', 'description', data)
- }
- {
- const data = {
- type: Sequelize.STRING(1000),
- allowNull: true,
- defaultValue: null
- }
- await utils.queryInterface.changeColumn('account', 'description', data)
- }
- }
- function down (options) {
- throw new Error('Not implemented.')
- }
- export {
- up,
- down
- }
|