wip: currently rewriting the project as a full stack application tangled.org/kacaii.dev/sigo
gleam
at main 14 lines 230 B view raw
1--  Register a new brigade into the database 2insert into public.brigade as b ( 3 leader_id, 4 brigade_name, 5 vehicle_code, 6 is_active 7) values ( 8 $1, 9 $2, 10 $3, 11 $4 12) returning 13 b.id, 14 b.created_at;