7 lines
189 B
CoffeeScript
7 lines
189 B
CoffeeScript
attr = DS.attr
|
|
App.Product = DS.Model.extend
|
|
name: attr 'string'
|
|
price: attr 'number'
|
|
product_category: DS.belongsTo('product_category')
|
|
product_orders: DS.hasMany('product_order')
|