public Person(UniSession s) {
super(s, "PERSON");
pref_addr = new StringColumn(this, 6);
ssn = new StringColumn(this, 8);
birth_date = new StringColumn(this, 14, "D4/");
where_used = new ListColumn(this, 31);
last_name = new StringColumn(this, 1);
first_name = new StringColumn(this, 3);
}