We need to run in production a query to update all register in table called applicants with the value of 15 in the column called status when the value of the hstore column called info contains the key called "aspiring_course_accepted" and the value is equal to true
UPDATE public.applicants SET status = 15 WHERE info @> hstore('aspiring_course_accepted', 'true');
We need to run in production a query to update all register in table called applicants with the value of 15 in the column called status when the value of the hstore column called info contains the key called "aspiring_course_accepted" and the value is equal to true
UPDATE public.applicants SET status = 15 WHERE info @> hstore('aspiring_course_accepted', 'true');