|
123456789101112131415161718192021222324252627 |
- 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.BOOLEAN,
- allowNull: false,
- defaultValue: false
- }
-
- await utils.queryInterface.addColumn('user', 'noAccountSetupWarningModal', data)
- }
- }
-
- function down (options) {
- throw new Error('Not implemented.')
- }
-
- export {
- up,
- down
- }
|