There are two tables in our database: student and student_credential
student table: student_id, student_school_id, student_name, student_dob, student_gender, student_class_id, student_profile_visibility, created_at, updated_at
required columns: student_school_id, student_name, student_class_id
optional columns: student_dob, student_gender, student_profile_visibility
default columns: student_id, created_at, updated_at
student_credential table: student_id, student_username, student_password
required columns: student_username, student_password
optional columns:
default columns: student_id
Based on these table details we have to create four APIs one for signing, second for signup, third to show profile details and fourth for update profile.
@sonu-ind-dev
There are two tables in our database: student and student_credential
student table: student_id, student_school_id, student_name, student_dob, student_gender, student_class_id, student_profile_visibility, created_at, updated_at
required columns: student_school_id, student_name, student_class_id
optional columns: student_dob, student_gender, student_profile_visibility
default columns: student_id, created_at, updated_at
student_credential table: student_id, student_username, student_password
required columns: student_username, student_password
optional columns:
default columns: student_id
Based on these table details we have to create four APIs one for signing, second for signup, third to show profile details and fourth for update profile.
@sonu-ind-dev