mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
17 lines
359 B
JavaScript
17 lines
359 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
up: (queryInterface, Sequelize) => {
|
|
return queryInterface.removeColumn('users', 'username')
|
|
},
|
|
|
|
down: (queryInterface, Sequelize) => {
|
|
/*
|
|
Add reverting commands here.
|
|
Return a promise to correctly handle asynchronicity.
|
|
|
|
Example:
|
|
return queryInterface.dropTable('users');
|
|
*/
|
|
}
|
|
};
|