Open b4bhadresh2020 opened 4 years ago
I created an endpoint for a set scholarship as a favorite.
Request URL : /set-scholarship-as-favorite Parameters : userId : hash-encoded-userId scholarshipId : hash-encoded-scholarshipId
Database Schema : scholarship_application
Query ALTER TABLE edurain.scholarship_application ADD COLUMN is_favorite TINYINT NULL DEFAULT 0 AFTER is_granted;
edurain
scholarship_application
is_favorite
is_granted
I created an endpoint for a set scholarship as a favorite.
Request URL : /set-scholarship-as-favorite Parameters : userId : hash-encoded-userId scholarshipId : hash-encoded-scholarshipId
Database Schema : scholarship_application
Query ALTER TABLE
edurain
.scholarship_application
ADD COLUMNis_favorite
TINYINT NULL DEFAULT 0 AFTERis_granted
;