This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/models/measurement.js
2015-02-03 12:32:46 -09:00

16 lines
458 B
JavaScript

import DS from 'ember-data';
export default DS.Model.extend({
characteristicId: DS.attr(),
textMeasurementTypeId: DS.attr(),
txtValue: DS.attr(),
numValue: DS.attr(),
confidenceInterval: DS.attr(),
unitTypeId: DS.attr(),
notes: DS.attr(),
testMethodId: DS.attr(),
strain: DS.belongsTo('strain', {async: true}),
characteristic: DS.belongsTo('characteristic', {async: true}),
createdAt: DS.attr('date'),
updatedAt: DS.attr('date')
});