Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | |||
|---|---|---|---|---|---|---|---|---|---|---|---|
| pkSignatureTypeId | int identity | 4 | √ | null |
|
|
Primary key - Unique identifier for each signature type, auto-incrementing integer |
||||
| SignatureType | varchar | 50 | null |
|
|
Signature type name - Descriptive name of the signature type (e.g., Electronic, Digital, Biometric) for classification (required field) |
|||||
| CreatedDate | datetime | 16,3 | √ | null |
|
|
Creation timestamp - When this signature type was first defined in the system |
||||
| CreatedBy | int | 4 | √ | null |
|
|
Creator user ID - Reference to user who created this signature type definition |
||||
| ModifiedDate | datetime | 16,3 | √ | null |
|
|
Last modification timestamp - When this signature type was most recently updated |
||||
| ModifiedBy | int | 4 | √ | null |
|
|
Last modifier - User ID who made the most recent update to this signature type |
||||
| DeletedDate | datetime | 16,3 | √ | null |
|
|
Soft delete timestamp - When this signature type was logically deleted while preserving audit trail |
||||
| DeletedBy | int | 4 | √ | null |
|
|
Deletion user ID - Reference to user who performed the soft delete operation |
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| PK_SignatureTypes | Primary key | Asc | pkSignatureTypeId |