Created
April 14, 2022 02:41
-
-
Save fleetimee/8f1668130dfc5cd0195ac606152e6fcf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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