mirror of
https://github.com/wahyd4/sohub.git
synced 2026-08-13 15:06:03 +10:00
20 lines
270 B
JavaScript
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'
|
|
// }
|
|
|
|
}
|
|
|
|
}; |