This table will be contain the data representing a signoff type |
signoff_type_KEY | int (4) | NOT NULL | Primary key |
description | nvarchar (100) | NOT NULL | Contains the text for the signoff type |
is_active | bit (1) | NOT NULL | Boolean that tells us whether or not the signoff will be filtered out of various areas of the Engagement Workspace |
signoff_role_KEY | int (4) | NOT NULL | Foreign key to the Signoff_Role table |
hot_key_KEY | int (4) | | Foreign key to the Hot_Key table. A null value indicates the hot key was not assigned to the signoff type. Assignments are unique across rows |
sequence_number | int (4) | NOT NULL | Used to keep track of the user-defined display order for signoff types. The value is required to be unique. When ordering signoff types, they should be ordered across the sequence_number column and then the signoff_type_KEy column. |