Misc data cleanup

This commit is contained in:
Matthew Dillon 2015-03-19 09:25:53 -08:00
parent c886a51b7d
commit ced405cd03
3 changed files with 51 additions and 47 deletions

View file

@ -22,15 +22,19 @@
</div> </div>
<div class="grid-4"> <div class="grid-4">
<dl class="span-1"> <dl class="span-1">
<dt>Created</dt> <dt>Isolated From</dt>
<dd>{{model.isolatedFrom}}</dd>
</dl>
<dl class="span-1">
<dt>Record Created</dt>
<dd>{{null-time model.createdAt 'LL'}}</dd> <dd>{{null-time model.createdAt 'LL'}}</dd>
</dl> </dl>
<dl class="span-1"> <dl class="span-1">
<dt>Updated</dt> <dt>Record Updated</dt>
<dd>{{null-time model.updatedAt 'LL'}}</dd> <dd>{{null-time model.updatedAt 'LL'}}</dd>
</dl> </dl>
<dl class="span-1"> <dl class="span-1">
<dt>Deleted</dt> <dt>Record Deleted</dt>
<dd>{{null-time model.deletedAt 'LL'}}</dd> <dd>{{null-time model.deletedAt 'LL'}}</dd>
</dl> </dl>
<dl class="span-1"></dl> <dl class="span-1"></dl>

View file

@ -6,140 +6,140 @@ module.exports = function(app) {
{ {
id: 1, id: 1,
strain: 1, strain: 1,
characteristic: 1, characteristic: 'Characteristic 1',
textMeasurementTypeId: 1, textMeasurementType: 'Meas. Type 1',
txtValue: null, txtValue: null,
numValue: null, numValue: null,
confidenceInterval: null, confidenceInterval: null,
unitTypeId: null, unitType: null,
notes: null, notes: null,
testMethodId: null, testMethod: null,
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z" updatedAt: "0001-01-01T00:00:00Z"
}, },
{ {
id: 2, id: 2,
strain: 1, strain: 1,
characteristic: 2, characteristic: 'Characteristic 2',
textMeasurementTypeId: 1, textMeasurementType: 'Meas. Type 1',
txtValue: null, txtValue: null,
numValue: null, numValue: null,
confidenceInterval: null, confidenceInterval: null,
unitTypeId: null, unitType: null,
notes: null, notes: null,
testMethodId: null, testMethod: null,
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z" updatedAt: "0001-01-01T00:00:00Z"
}, },
{ {
id: 3, id: 3,
strain: 1, strain: 1,
characteristic: 3, characteristic: 'Characteristic 3',
textMeasurementTypeId: null, textMeasurementType: null,
txtValue: "text value", txtValue: "text value",
numValue: null, numValue: null,
confidenceInterval: null, confidenceInterval: null,
unitTypeId: null, unitType: null,
notes: "some notes", notes: "some notes",
testMethodId: null, testMethod: null,
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z" updatedAt: "0001-01-01T00:00:00Z"
}, },
{ {
id: 4, id: 4,
strain: 1, strain: 1,
characteristic: 4, characteristic: 'Characteristic 4',
textMeasurementTypeId: null, textMeasurementType: null,
txtValue: null, txtValue: null,
numValue: 123.4, numValue: 123.4,
confidenceInterval: null, confidenceInterval: null,
unitTypeId: 1, unitType: 'Unit 1',
notes: null, notes: null,
testMethodId: null, testMethod: null,
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z" updatedAt: "0001-01-01T00:00:00Z"
}, },
{ {
id: 5, id: 5,
strain: 1, strain: 1,
characteristic: 4, characteristic: 'Characteristic 4',
textMeasurementTypeId: null, textMeasurementType: null,
txtValue: null, txtValue: null,
numValue: 567.8, numValue: 567.8,
confidenceInterval: 0.2, confidenceInterval: 0.2,
unitTypeId: 1, unitType: 'Unit 1',
notes: null, notes: null,
testMethodId: null, testMethod: null,
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z" updatedAt: "0001-01-01T00:00:00Z"
}, },
{ {
id: 6, id: 6,
strain: 2, strain: 2,
characteristic: 1, characteristic: 'Characteristic 1',
textMeasurementTypeId: 1, textMeasurementType: 'Meas. Type 1',
txtValue: null, txtValue: null,
numValue: null, numValue: null,
confidenceInterval: null, confidenceInterval: null,
unitTypeId: null, unitType: null,
notes: null, notes: null,
testMethodId: null, testMethod: null,
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z" updatedAt: "0001-01-01T00:00:00Z"
}, },
{ {
id: 7, id: 7,
strain: 2, strain: 2,
characteristic: 2, characteristic: 'Characteristic 2',
textMeasurementTypeId: 1, textMeasurementType: 'Meas. Type 1',
txtValue: null, txtValue: null,
numValue: null, numValue: null,
confidenceInterval: null, confidenceInterval: null,
unitTypeId: null, unitType: null,
notes: null, notes: null,
testMethodId: null, testMethod: null,
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z" updatedAt: "0001-01-01T00:00:00Z"
}, },
{ {
id: 8, id: 8,
strain: 2, strain: 2,
characteristic: 3, characteristic: 'Characteristic 3',
textMeasurementTypeId: null, textMeasurementType: 'Meas. Type 1',
txtValue: "text value", txtValue: "text value",
numValue: null, numValue: null,
confidenceInterval: null, confidenceInterval: null,
unitTypeId: null, unitType: null,
notes: "some notes", notes: "some notes",
testMethodId: null, testMethod: null,
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z" updatedAt: "0001-01-01T00:00:00Z"
}, },
{ {
id: 9, id: 9,
strain: 2, strain: 2,
characteristic: 4, characteristic: 'Characteristic 4',
textMeasurementTypeId: null, textMeasurementType: null,
txtValue: null, txtValue: null,
numValue: 123.4, numValue: 123.4,
confidenceInterval: null, confidenceInterval: null,
unitTypeId: 1, unitType: 'Unit 1',
notes: null, notes: null,
testMethodId: null, testMethod: null,
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z" updatedAt: "0001-01-01T00:00:00Z"
}, },
{ {
id: 10, id: 10,
strain: 2, strain: 2,
characteristic: 4, characteristic: 'Characteristic 4',
textMeasurementTypeId: null, textMeasurementType: null,
txtValue: null, txtValue: null,
numValue: 567.8, numValue: 567.8,
confidenceInterval: 0.2, confidenceInterval: 0.2,
unitTypeId: 1, unitType: 'Unit 1',
notes: null, notes: null,
testMethodId: null, testMethod: null,
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z" updatedAt: "0001-01-01T00:00:00Z"
} }

View file

@ -11,7 +11,7 @@ module.exports = function(app) {
etymology: "Test Etymology", etymology: "Test Etymology",
accessionBanks: "Test Accession", accessionBanks: "Test Accession",
genbankEmblDdb: "Test Genbank", genbankEmblDdb: "Test Genbank",
isolatedFrom: null, isolatedFrom: "Location 1",
measurements: [1,2,3,4,5], measurements: [1,2,3,4,5],
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z", updatedAt: "0001-01-01T00:00:00Z",
@ -25,7 +25,7 @@ module.exports = function(app) {
etymology: "Test Etymology", etymology: "Test Etymology",
accessionBanks: "Test Accession", accessionBanks: "Test Accession",
genbankEmblDdb: "Test Genbank", genbankEmblDdb: "Test Genbank",
isolatedFrom: null, isolatedFrom: "Location 2",
measurements: [6,7,8,9,10], measurements: [6,7,8,9,10],
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z", updatedAt: "0001-01-01T00:00:00Z",
@ -39,7 +39,7 @@ module.exports = function(app) {
etymology: "Test Etymology", etymology: "Test Etymology",
accessionBanks: "Test Accession", accessionBanks: "Test Accession",
genbankEmblDdb: "Test Genbank", genbankEmblDdb: "Test Genbank",
isolatedFrom: null, isolatedFrom: "Location 1",
measurements: [], measurements: [],
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z", updatedAt: "0001-01-01T00:00:00Z",
@ -53,7 +53,7 @@ module.exports = function(app) {
etymology: "Test Etymology", etymology: "Test Etymology",
accessionBanks: "Test Accession", accessionBanks: "Test Accession",
genbankEmblDdb: "Test Genbank", genbankEmblDdb: "Test Genbank",
isolatedFrom: null, isolatedFrom: "Location 2",
measurements: [], measurements: [],
createdAt: "0001-01-01T00:00:00Z", createdAt: "0001-01-01T00:00:00Z",
updatedAt: "0001-01-01T00:00:00Z", updatedAt: "0001-01-01T00:00:00Z",