Table s_label |
Description: Attributes for label paper |
PRIMARY KEY | ||
p_label_name_c
varchar (20) NOT NULL | ||
s_label_description_c
varchar (80) | ||
s_form_name_c
varchar (20) NOT NULL | The form the label is designed for | s_form |
s_top_margin_n
numeric (6, 2) default: 0 NOT NULL | The disance from the top of the page to the top of the first label. | |
s_side_margin_n
numeric (6, 2) default: 0 NOT NULL | The distance from the left edge of the page to the left edge of the first label. | |
s_vertical_pitch_n
numeric (6, 2) default: 0 NOT NULL | The distance from the top of the first label to the top of the next label. | |
s_horizontal_pitch_n
numeric (6, 2) default: 0 NOT NULL | The distance from the left edge of the first label to the left edge of the next label. | |
s_label_height_n
numeric (6, 2) default: 0 NOT NULL | The height of each label. | |
s_label_width_n
numeric (6, 2) default: 0 NOT NULL | The width of each label. | |
s_labels_across_i
integer default: 0 NOT NULL | The number of labels across a page. | |
s_labels_down_i
integer default: 0 NOT NULL | The number of labels down a page. | |
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 default: CURRENT_TIMESTAMP | This identifies the current version of the record. | |
FOREIGN KEY s_label_fk1: s_form_name_c => s_form s_label_fkcr: s_created_by_c => s_user s_label_fkmd: s_modified_by_c => s_user |