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

13 lines
317 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;