Changes between Version 3 and Version 4 of AppDesign/UseCase03
- Timestamp:
- 01/21/25 02:29:01 (32 hours ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AppDesign/UseCase03
v3 v4 14 14 4. User selects their payment method, and inputs their payment details. 15 15 5. System creates a new record in the profile marketing requests table. 16 17 18 {{{ 19 -- Insert into Profile Marketing Request Table 20 INSERT INTO ProfileMarketingRequest (target_followers , timeline , profileid , date_created, status, userid , providerid) VALUES 21 (3000, '2025-02-01 00:00:00', 1, '2025-01-10 12:00:00', 'pending', 1, 1); 22 }}}