This table provides a list of valid household types. This information is static and doesn't need a data entry page.
Source romber_household_types_tbl.sql
create table romber_member.household_types (
household_type_code romber_base.generic_code not null,
household_type_id romber_member.household_type_id not null
default nextval ( 'romber_base.generic_id_seq' ),
household_type_name romber_base.generic_name not null );
Source romber_household_types_pk.sql
alter table romber_member.household_types
add constraint romber_household_types_pk
primary key ( household_type_id );
Source romber_household_types_uk1.sql
alter table romber_member.household_types
add constraint romber_household_types_uk1
unique ( household_type_code );
Source romber_household_types_fk1.sql
alter table romber_member.household_types
add constraint romber_household_types_fk1
foreign key ( household_type_id )
references romber_meta.objects ( meta_object_id );
Source romber_household_types_load.sql