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
Matthew Dillon 21e0e6c624 Linting
2015-11-12 05:54:18 -07:00

17 lines
583 B
JavaScript

import DS from 'ember-data';
const { Model, belongsTo, attr } = DS;
export default Model.extend({
strain : belongsTo('strain', { async: false }),
characteristic : belongsTo('characteristic', { async: false }),
value : attr('string'),
confidenceInterval : attr('number'),
unitType : attr('string'),
notes : attr('string'),
testMethod : attr('string'),
createdAt : attr('date'),
updatedAt : attr('date'),
createdBy : attr('number'),
updatedBy : attr('number'),
});