mirror of
https://github.com/acedanger/budget-database.git
synced 2025-12-06 07:00:14 -08:00
refactor SQL scripts for consistency and style improvements
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user