Rough in characteristics

This commit is contained in:
Matthew Dillon 2015-03-26 16:26:07 -08:00
parent c5cb0ec145
commit d587f14af4
13 changed files with 187 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import DS from 'ember-data';
export default DS.Model.extend({
characteristicName: DS.attr('string'),
characteristicType: DS.attr('string'),
strains: DS.hasMany('strain'),
measurements: DS.hasMany('measurements'),
createdAt: DS.attr('date'),
updatedAt: DS.attr('date'),
deletedAt: DS.attr('date')
});