Changes between Version 3 and Version 4 of UseCase01


Ignore:
Timestamp:
09/22/26 13:58:30 (23 hours ago)
Author:
236021
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCase01

    v3 v4  
    11111. Patient navigates to the Medora login page.
    1212
    13 2. Patient enters their username and password and submits the login form.
     132. Patient enters their username (EMBG) and password and submits the login form.
    1414
    1515{{{
     
    2424  u.is_active
    2525FROM users u
    26 WHERE u.username = 'maja.veljanova';
     26WHERE u.username = '1402994123456';
    2727}}}
    2828
     
    3333SELECT u.user_id
    3434FROM users u
    35 WHERE u.username = 'maja.veljanova'
     35WHERE u.username = '1402994123456'
    3636  AND u.is_active = TRUE;
    3737}}}
     
    4848  p.embg
    4949FROM patients p
    50 JOIN users u ON u.patient_id = p.patient_id
    51 WHERE u.username = 'maja.veljanova';
     50JOIN users u ON u.user_id = p.user_id
     51WHERE u.username = '1402994123456';
    5252}}}
    5353