There are two tables in our database: school and school_credential
- school table: school_id, school_name, school_address, school_address_pincode, school_board, school_email, school_phone_number, school_alternate_phone_number, school_website_url, created_at, updated_at
required columns: school_name, school_address, school_address_pincode, school_board, school_email, school_phone_number
optional columns: school_alternate_phone_number, school_website_url
default columns: school_id, created_at, updated_at
- school_credential table: school_id, school_phone_number, school_password
required columns: school_phone_number, school_password
optional columns:
default columns: school_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: school and school_credential
required columns: school_name, school_address, school_address_pincode, school_board, school_email, school_phone_number
optional columns: school_alternate_phone_number, school_website_url
default columns: school_id, created_at, updated_at
required columns: school_phone_number, school_password
optional columns:
default columns: school_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