mirror of
https://github.com/acedanger/budget-database.git
synced 2025-12-06 07:00:14 -08:00
13 lines
317 B
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; |