Changes between Version 4 and Version 5 of CreateBuild


Ignore:
Timestamp:
12/29/25 02:19:18 (23 hours ago)
Author:
233051
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CreateBuild

    v4 v5  
    1313VALUES ($userId, $name, CURRENT_DATE, $description, 0.00, false)
    1414}}}
     15
     16{{{
     17
     18{{{
     19BEGIN;
     20
     21SELECT
     22  b.id,
     23  b.user_id,
     24  b.is_approved,
     25  b.name,
     26  b.description,
     27  b.total_price,
     28FROM builds b
     29WHERE b.id = $1
     30  AND b.user_id = $2
     31LIMIT 1;
     32
     33SELECT
     34  bc.component_id
     35FROM build_components bc
     36WHERE bc.build_id = $1;
     37
     38COMMIT;
     39}}}
     40}}}
    1541[[Image(showForge.png)]]