first commit

This commit is contained in:
kicap1992
2022-04-27 01:19:12 +08:00
parent 1ac188d93a
commit c3d0676355
38 changed files with 11606 additions and 1486 deletions

View File

@ -0,0 +1,19 @@
module.exports = (sequelize, Sequelize) => {
const Tindakan = sequelize.define("tb_tindakan", {
id_tindakan:{
type: Sequelize.INTEGER,
allowNull: false,
primaryKey: true,
autoIncrement: true
},
nama_tindakan:{
type: Sequelize.STRING,
allowNull: false
}
},{
freezeTableName: true,
tableName: 'tb_tindakan',
})
return Tindakan
}