Changes between Version 2 and Version 3 of AppDesign/UseCase01


Ignore:
Timestamp:
01/21/25 02:26:55 (32 hours ago)
Author:
211585
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AppDesign/UseCase01

    v2 v3  
    10102. The user provides their username, email, password, contact info.
    11113. After successful registration, the user can access their account and perform further actions.
     12
     13{{{
     14
     15INSERT INTO app_user (username , email, password, contact_details) VALUES
     16('user1', 'user1@example.com', 'password123', '123-456-7890')
     17}}}