Actions
Task #148
openSave Profile (Bookmark Profile)
Start date:
02/25/2026
Due date:
02/25/2026 (8 days late)
% Done:
0%
Estimated time:
Description
The Save Profile Module allows users to bookmark or save other profiles for future reference.
This feature helps users:
- Save profiles they like
- View saved profiles later
- Easily send interest or message
Table
saved_profile_table
- id INT PK Unique save record ID
- saved_by_profile_id INT FK Profile who saves
- saved_profile_id INT FK Profile being saved
- saved_date DATETIME — Date and time saved
- is_active BOOLEAN — Status
Validations
saved_by_profile_id
- Mandatory
- Must exist in registration_table
- Must be active profile
saved_profile_id
-
Mandatory
-
Must exist in registration_table
-
Must be active profile
-
Duplicate Save Restriction
-
Self Save Restriction
saved_date
- Auto-generated
- Cannot be NULL
is_active
- Default value: true
Actions