UNPKG

ember-rocks

Version:

An Em(ber) command line utility to help you build an ambitious web application

13 lines (9 loc) 215 B
import DS from 'ember-data'; var attr = DS.attr; var belongsTo = DS.belongsTo; var Others = DS.Model.extend({ idField: attr(), other: attr('string'), users: belongsTo('user') }); export default Others;