Sistem-Pakar-Diagnosa-Penya.../backend/migrations/20250503100211-add-foto-to-...

15 lines
353 B
JavaScript

'use strict';
/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.addColumn('penyakit', 'foto', {
type: Sequelize.STRING,
allowNull: true
});
},
async down(queryInterface, Sequelize) {
await queryInterface.removeColumn('penyakit', 'foto');
}
};