diff --git a/app/models/strain.js b/app/models/strain.js
index d411a5d..f73278e 100644
--- a/app/models/strain.js
+++ b/app/models/strain.js
@@ -9,6 +9,7 @@ export default DS.Model.extend({
accessionBanks: DS.attr('string'),
genbankEmblDdb: DS.attr('string'),
isolatedFrom: DS.attr('string'),
+ notes: DS.attr('string'),
createdAt: DS.attr('date'),
updatedAt: DS.attr('date'),
deletedAt: DS.attr('date'),
diff --git a/app/templates/strains/show.hbs b/app/templates/strains/show.hbs
index a3e72f3..c2d2e8f 100644
--- a/app/templates/strains/show.hbs
+++ b/app/templates/strains/show.hbs
@@ -32,6 +32,13 @@
{{! ROW 4 }}
+
{{! Does nothing ATM }}
diff --git a/server/mocks/strains.js b/server/mocks/strains.js
index a6a8d26..1a29aaa 100644
--- a/server/mocks/strains.js
+++ b/server/mocks/strains.js
@@ -17,6 +17,7 @@ module.exports = function(app) {
updatedAt: "0001-01-01T00:00:00Z",
deletedAt: null,
author: 1,
+ notes: "Test notes",
totalMeasurements: 5,
},
{
@@ -32,6 +33,7 @@ module.exports = function(app) {
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z",
deletedAt: null,
+ notes: "Test notes",
author: 3,
totalMeasurements: 5,
},
@@ -47,6 +49,7 @@ module.exports = function(app) {
measurements: [],
createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z",
+ notes: "Test notes",
deletedAt: null,
author: 1,
totalMeasurements: 0,
@@ -62,6 +65,7 @@ module.exports = function(app) {
isolatedFrom: "Location 2",
measurements: [],
createdAt: "0001-01-01T00:00:00Z",
+ notes: "Test notes",
updatedAt: "0001-01-01T00:00:00Z",
deletedAt: null,
author: 3,