Files
sohub/api/models/User.js
T

20 lines
270 B
JavaScript

/*---------------------
:: User
-> model
---------------------*/
module.exports = {
attributes : {
// Simple attribute:
// name: 'STRING',
// Or for more flexibility:
// phoneNumber: {
// type: 'STRING',
// defaultValue: '555-555-5555'
// }
}
};