Changes between Version 4 and Version 5 of UseCase001


Ignore:
Timestamp:
05/12/26 23:35:49 (2 weeks ago)
Author:
232012
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UseCase001

    v4 v5  
    1010
    1111{{{#!div style="text-align: justify; width: 100%;"
    12 1. User provides their required registration details, including a {{{email}}}, {{{password}}} and {{{username}}}, and submits the registration form.
     12**1.** User provides their required registration details, including a {{{email}}}, {{{password}}} and {{{username}}}, and submits the registration form.
    1313
    14 2. System validates that the {{{email}}} is unique and that all required fields meet the necessary formatting standards.
     14**2.** System validates that the {{{email}}} is unique and that all required fields meet the necessary formatting standards.
    1515
     16{{{#!div style="margin-left: 20px;"
    1617{{{
    1718SELECT COUNT(*)
     
    1920WHERE email = 'user@example.com';
    2021}}}
     22}}}
    2123
    22 3. System creates a new entry in the {{{User}}} table with a unique {{{user_id}}} and the current {{{date_created}}}.
     24**3.** System creates a new entry in the {{{User}}} table with a unique {{{user_id}}} and the current {{{date_created}}}.
    2325
    2426{{{
     
    2729}}}
    2830
    29 4. System initializes a corresponding entry in the {{{Consumer table}}}, setting the {{{points_collected}}} to zero and establishing the one-to-one relationship with the new {{{user_id}}}.
     31**4.** System initializes a corresponding entry in the {{{Consumer table}}}, setting the {{{points_collected}}} to zero and establishing the one-to-one relationship with the new {{{user_id}}}.
    3032
    3133{{{
     
    3436}}}
    3537
    36 5. System confirms the successful account creation and automatically logs the user in.
     38**5.** System confirms the successful account creation and automatically logs the user in.
    3739}}}