When defining a field, what is the difference between:
,cadastre integer NOT NULL
,CONSTRAINT fkey_affaire_vl_cadastre FOREIGN KEY(cadastre)
REFERENCES public.vl_cadastre (obj_id) MATCH SIMPLE
ON UPDATE RESTRICT ON DELETE RESTRICT
AND directly
,cadastre integer NOT NULL REFERENCES public.cadastre (obj_id)