Changes between Version 9 and Version 10 of CreateBuild


Ignore:
Timestamp:
12/29/25 11:49:59 (22 hours ago)
Author:
233051
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CreateBuild

    v9 v10  
    1818}}}
    1919
     20
    2021{{{
    2122BEGIN;
     
    2930  b.total_price,
    3031FROM builds b
    31 WHERE b.id = $1
    32   AND b.user_id = $2
     32WHERE b.id = $buildId
     33  AND b.user_id = $userId
    3334LIMIT 1;
    3435
     
    3637  bc.component_id
    3738FROM build_components bc
    38 WHERE bc.build_id = $1;
     39WHERE bc.build_id = $buildId;
    3940
    4041COMMIT;