module.exports = (sequelize, DataTypes) => {
  const Properties = sequelize.define('properties', {
    name: DataTypes.STRING
  }, {})
  Properties.associate = function (models) {
    // associations can be defined here
  }
  return Properties
}