gancio/server/migrations/20250307092529-drop_unused_user_followers.js
2025-03-07 11:59:23 +01:00

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) {
}
};