Table p_publication |
Description: Details of a publication |
PRIMARY KEY | ||
p_publication_code_c
varchar (20) NOT NULL | This is the key to the publication table | |
p_number_of_issues_i
integer default: 0 | ||
p_number_of_reminders_i
integer default: 1 | The number of free issues and reminders to send out. | |
p_publication_description_c
varchar (80) | A short description of the publication | |
p_valid_publication_l
boolean default: '1' | ||
a_frequency_code_c
varchar (24) NOT NULL | a_frequency | |
p_publication_label_code_c
varchar (6) | The publication short code that is used on an address label | |
p_publication_language_c
varchar (20) | p_language | |
s_date_created_d
date default: CURRENT_DATE | The date the record was created. | |
s_created_by_c
varchar (20) | User ID of who created this record. | s_user |
s_date_modified_d
date | The date the record was modified. | |
s_modified_by_c
varchar (20) | User ID of who last modified this record. | s_user |
s_modification_id_t
timestamp | This identifies the current version of the record. | |
FOREIGN KEY p_publication_fk1: a_frequency_code_c => a_frequency p_publication_fk2: p_publication_language_c => p_language p_publication_fkcr: s_created_by_c => s_user p_publication_fkmd: s_modified_by_c => s_user | ||
REFERENCED BY p_publication_cost, p_subscription | ||