refactor SQL scripts for consistency and style improvements

This commit is contained in:
Peter Wood
2025-03-06 08:26:39 -05:00
parent b6a6ca3b38
commit 07b8185c35
10 changed files with 192 additions and 168 deletions

View File

@@ -1,11 +1,13 @@
DROP TABLE public.budgetimport;
drop table public.budgetimport;
create table public.budgetimport (
dt bpchar(20) NULL,
amount numeric(10, 2) NULL,
description bpchar(200) NULL
dt bpchar (20) 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;
alter table public.budgetimport OWNER to acedanger;
grant all on table public.budgetimport to acedanger;
grant all on table public.budgetimport to budgetuser;