WIP - rebuilding from ground up
This commit is contained in:
parent
62020a9865
commit
ced3f7d2d2
16 changed files with 154 additions and 4 deletions
13
app/models/strain.js
Normal file
13
app/models/strain.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
import DS from 'ember-data';
|
||||
|
||||
export default DS.Model.extend({
|
||||
strainName: DS.attr('string'),
|
||||
strainType: DS.attr('string'),
|
||||
etymology: DS.attr('string'),
|
||||
accessionBanks: DS.attr('string'),
|
||||
genbankEmblDdb: DS.attr('string'),
|
||||
isolatedFrom: DS.attr('string'),
|
||||
createdAt: DS.attr('date'),
|
||||
updatedAt: DS.attr('date'),
|
||||
deletedAt: DS.attr('date')
|
||||
});
|
Reference in a new issue