This table provides a list of communication list entries.
Source romber_communication_list_entries_tbl.sql
create table romber_communication.list_entries (
communication_list_id romber_communication.list_id not null
default nextval ( 'romber_base.generic_id_seq' ),
meta_object_id romber_meta.object_id not null );
Source romber_communication_list_entries_pk.sql
alter table romber_communication.list_entries
add constraint romber_communication_list_entries_pk
primary key (
communication_list_id,
meta_object_id );
Source romber_communication_list_entries_fk1.sql
alter table romber_communication.list_entries
add constraint romber_communication_list_entries_fk1
foreign key ( communication_list_id )
references romber_communication.lists ( communication_list_id );
Source romber_communication_list_entries_fk2.sql
alter table romber_communication.list_entries
add constraint romber_communication_list_entries_fk2
foreign key ( meta_object_id )
references romber_meta.objects ( meta_object_id );