Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. module.exports = (sequelize, Sequelize) => {
  2. return sequelize.define('mouse', {
  3. model_number: {
  4. type: Sequelize.STRING(),
  5. allowNull: false
  6. },
  7. manufacturer: {
  8. type: Sequelize.STRING(),
  9. allowNull: false
  10. }
  11. }, {
  12. timestamps: true
  13. });
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement