summaryrefslogtreecommitdiff
path: root/app/Census/CensusOfUnitedStates1790.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-02-28 23:26:03 +0000
committerGreg Roach <fisharebest@gmail.com>2016-02-28 23:26:03 +0000
commit3e615db9a880f815ae2d87be1487028595c22f43 (patch)
treeac3c2f0769e2e4ce4a4a67ed7d878172cc8ecda7 /app/Census/CensusOfUnitedStates1790.php
parenta1dda6ecf4697367301be81a40e70b9ff401fc9c (diff)
downloadwebtrees-3e615db9a880f815ae2d87be1487028595c22f43.tar.gz
webtrees-3e615db9a880f815ae2d87be1487028595c22f43.tar.bz2
webtrees-3e615db9a880f815ae2d87be1487028595c22f43.zip
Fix #810 US census
Diffstat (limited to 'app/Census/CensusOfUnitedStates1790.php')
-rw-r--r--app/Census/CensusOfUnitedStates1790.php15
1 files changed, 7 insertions, 8 deletions
diff --git a/app/Census/CensusOfUnitedStates1790.php b/app/Census/CensusOfUnitedStates1790.php
index fe87c83c34..dacb97eccc 100644
--- a/app/Census/CensusOfUnitedStates1790.php
+++ b/app/Census/CensusOfUnitedStates1790.php
@@ -35,15 +35,14 @@ class CensusOfUnitedStates1790 extends CensusOfUnitedStates implements CensusInt
*/
public function columns() {
return array(
- new CensusColumnFullName($this, 'Name', 'Name'),
- new CensusColumnRelationToHead($this, 'Relation', 'Relation to head of household'),
- new CensusColumnOccupation($this, 'Occupation', 'Profession, occupation, or trade'),
- new CensusColumnAgeMaleOvr16Years($this, 'White Male 16+', 'White male of 16 yrs upward'),
- new CensusColumnAgeMaleUnder16Years($this, 'White Male 16-', 'White males of under 16 yrs'),
- new CensusColumnAllFemales($this, 'White Female', 'All White Females'),
- new CensusColumnNull($this, 'Other Free', 'All other free persons'),
+ new CensusColumnFullName($this, 'Name', 'Name of head of family'),
+ new CensusColumnOccupation($this, 'Occupation', 'Professions and occupation'),
+ new CensusColumnNull($this, 'White male 16+', 'White male of 16 yrs upward'),
+ new CensusColumnNull($this, 'White male 0-16', 'White males of under 16 yrs'),
+ new CensusColumnNull($this, 'White female', 'All White Females'),
+ new CensusColumnNull($this, 'Free', 'All other free persons'),
new CensusColumnNull($this, 'Slaves', 'Number of slaves'),
-
+ new CensusColumnNull($this, 'Total', 'Total'),
);
}
}