Skip to content

Instantly share code, notes, and snippets.

@fleetimee
Created April 14, 2022 02:41
Show Gist options
  • Save fleetimee/8f1668130dfc5cd0195ac606152e6fcf to your computer and use it in GitHub Desktop.
Save fleetimee/8f1668130dfc5cd0195ac606152e6fcf to your computer and use it in GitHub Desktop.
"use strict";
module.exports = {
async up(queryInterface, Sequelize) {
queryInterface.addColumn("Tbl_user", "nama_lengkap", {
type: Sequelize.STRING,
allowNull: true,
});
},
async down(queryInterface, Sequelize) {
queryInterface.removeColumn("Tbl_user", "nama_lengkap");
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment