12 lines
234 B
JavaScript
12 lines
234 B
JavaScript
'use strict';
|
|
|
|
/** @type {import('sequelize-cli').Migration} */
|
|
module.exports = {
|
|
async up (queryInterface, Sequelize) {
|
|
return queryInterface.dropTable('user_followers')
|
|
},
|
|
|
|
async down (queryInterface, Sequelize) {
|
|
}
|
|
};
|