Changes between Version 3 and Version 4 of AppDesign/UseCase03


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

--

Legend:

Unmodified
Added
Removed
Modified
  • AppDesign/UseCase03

    v3 v4  
    14144. User selects their payment method, and inputs their payment details.
    15155. System creates a new record in the profile marketing requests table.
     16
     17
     18{{{
     19-- Insert into Profile Marketing Request Table
     20INSERT 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}}}