Changes between Version 2 and Version 3 of AppDesign/UseCase01
- Timestamp:
- 01/21/25 02:26:55 (32 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppDesign/UseCase01
v2 v3 10 10 2. The user provides their username, email, password, contact info. 11 11 3. After successful registration, the user can access their account and perform further actions. 12 13 {{{ 14 15 INSERT INTO app_user (username , email, password, contact_details) VALUES 16 ('user1', 'user1@example.com', 'password123', '123-456-7890') 17 }}}