Changes between Version 2 and Version 3 of AppDesign/UseCase02
- Timestamp:
- 01/21/25 02:29:38 (33 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppDesign/UseCase02
v2 v3 11 11 - User enters the social media handle, profile URL, and specifies the account type (e.g., Public, Private..). 12 12 - System validates and stores the social media profile information in the database. 13 14 15 {{{ 16 INSERT INTO SocialMediaProfile (platform, user_name, account_type, followers_count, userid) VALUES 17 ('Twitter', 'user1_twitter', 'public', 1500, 1) 18 }}}