Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments |
|---|---|---|---|---|---|---|---|---|
| id | bigserial | 19 | √ | nextval('tbl_albumphoto_id_seq'::regclass) |
|
|
Primary key |
|
| albumid | int8 | 19 | √ | null |
|
|
FK: Reference to a photo album master table (e.g., tbl_albummaster) |
|
| photoname | varchar | 100 | √ | null |
|
|
A descriptive name or title given to the photo. |
|
| photourl | varchar | 100 | √ | null |
|
|
The URL or file path where the actual image file is stored (e.g., S3 bucket link, internal server path). |
|
| createdby | varchar | 50 | √ | null |
|
|
FK: public.tbl_userlogin.id or public.tbl_employee.employeeid |
|
| createddate | timestamp | 29,6 | √ | null |
|
|
Timestamp of when the photo record was created (i.e., when the photo was uploaded). |
|
| modifiedby | varchar | 50 | √ | null |
|
|
FK: public.tbl_userlogin.id or public.tbl_employee.employeeid |
|
| modifieddate | timestamp | 29,6 | √ | null |
|
|
Timestamp of the last modification to the photo record. |
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| tbl_albumphoto_pk__tbl_albu__3214ec07249e2261 | Primary key | Asc | id |
