parent
52eaa0caea
commit
3fcc0b2f4c
1 changed files with 22 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||||||
|
'use strict'; |
||||||
|
|
||||||
|
module.exports = { |
||||||
|
up(queryInterface, Sequelize) { |
||||||
|
return Promise.all([ |
||||||
|
queryInterface.addColumn( |
||||||
|
'Users',
|
||||||
|
'imageFileName',
|
||||||
|
{ |
||||||
|
type: Sequelize.STRING, |
||||||
|
allowNull: false, |
||||||
|
}, |
||||||
|
) |
||||||
|
]); |
||||||
|
}, |
||||||
|
|
||||||
|
down(queryInterface, Sequelize) { |
||||||
|
return Promise.all([ |
||||||
|
queryInterface.removeColumn('Users', 'imageFileName'), |
||||||
|
]); |
||||||
|
}, |
||||||
|
}; |
Loading…
Reference in new issue