Files
budget-database/postgres/tables/budgetimport.sql

11 lines
310 B
SQL

DROP TABLE public.budgetimport;
create table public.budgetimport (
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;