sails
Version:
API-driven framework for building realtime apps, using MVC conventions (based on Express and Socket.io)
24 lines (22 loc) • 351 B
JavaScript
module.exports = {
primaryKey: 'user_id',
attributes: {
id: false,
user_id: {
type: 'integer',
autoIncrement: true
},
name: 'string',
pets: {
collection: 'pet',
via: 'owner'
},
patients: {
collection: 'pet',
via: 'vets'
},
profile: {
model: 'userprofile'
}
}
};