Ankur Malik 4c3aa40a58
All checks were successful
Build and Push Docker Image / setup (push) Successful in 4s
Build and Push Docker Image / build_and_push (push) Successful in 38s
Add db_push_uprova branch contents
2025-11-26 12:04:04 -05:00

41 lines
1001 B
SQL

INSERT INTO public.uprova (
application_key,
application_timestamp,
educationlevel,
employmentstatus,
lengthatbank,
lengthatjob,
ownhome,
payfrequency,
monthsatresidence,
state,
zip
)
VALUES (
$application_key,
$application_timestamp,
$educationlevel,
$employmentstatus,
$lengthatbank,
$lengthatjob,
$ownhome,
$payfrequency,
$monthsatresidence,
$state,
$zip
)
ON CONFLICT (application_key)
DO UPDATE
SET
application_timestamp = EXCLUDED.application_timestamp,
educationlevel = EXCLUDED.educationlevel,
employmentstatus = EXCLUDED.employmentstatus,
lengthatbank = EXCLUDED.lengthatbank,
lengthatjob = EXCLUDED.lengthatjob,
ownhome = EXCLUDED.ownhome,
payfrequency = EXCLUDED.payfrequency,
monthsatresidence = EXCLUDED.monthsatresidence,
state = EXCLUDED.state,
zip = EXCLUDED.zip;