DROP TABLE public.budgetimport; create table public.budgetimport ( dt bpchar(10) NULL, amount numeric(10, 2) NULL, description bpchar(200) NULL ); ALTER TABLE public.budgetimport OWNER TO acedanger; GRANT ALL ON TABLE public.budgetimport TO acedanger; GRANT ALL ON TABLE public.budgetimport TO budgetuser;