Changes between Version 3 and Version 4 of EditBuild


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

--

Legend:

Unmodified
Added
Removed
Modified
  • EditBuild

    v3 v4  
    2222SELECT
    2323  b.id,
    24   b.user_id      AS "userId",
    25   b.is_approved  AS "isApproved",
     24  b.user_id,
     25  b.is_approved,
    2626  b.name,
    2727  b.description,
    28   b.total_price  AS "totalPrice"
     28  b.total_price,
    2929FROM builds b
    30 WHERE b.id = $1        -- buildId
    31   AND b.user_id = $2   -- userId
     30WHERE b.id = $1
     31  AND b.user_id = $2
    3232LIMIT 1;
    3333
    3434SELECT
    35   bc.component_id AS "componentId"
     35  bc.component_id
    3636FROM build_components bc
    37 WHERE bc.build_id = $1;  -- buildId
     37WHERE bc.build_id = $1;
    3838
    3939COMMIT;