39 lines
841 B
JavaScript
39 lines
841 B
JavaScript
'use strict';
|
|
|
|
const { sequelize } = require('../models');
|
|
|
|
/** @type {import('sequelize-cli').Migration} */
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.createTable('hama', {
|
|
id: {
|
|
allowNull: false,
|
|
autoIncrement: true,
|
|
primaryKey: true,
|
|
type: Sequelize.INTEGER
|
|
},
|
|
kode: {
|
|
type: Sequelize.STRING,
|
|
allowNull: true
|
|
},
|
|
nama: {
|
|
type: Sequelize.STRING,
|
|
allowNull: true
|
|
},
|
|
deskripsi: {
|
|
type: Sequelize.STRING
|
|
},
|
|
penanganan: {
|
|
type: Sequelize.STRING,
|
|
allowNull: true
|
|
},
|
|
nilai_pakar: {
|
|
type: Sequelize.FLOAT,
|
|
allowNull: true
|
|
},
|
|
});
|
|
},
|
|
async down(queryInterface, Sequelize) {
|
|
await queryInterface.dropTable('hama');
|
|
}
|
|
}; |