/** * Employees.js * * @description :: A model definition represents a database table/collection. * @docs :: https://sailsjs.com/docs/concepts/models-and-orm/models */ module.exports = { attributes: { name: 'string', city: 'string', salary: 'number' }, };