Add budget

This commit is contained in:
2016-12-20 20:20:52 +01:00
parent ca1c2ed778
commit 04af4bce7e
2 changed files with 22 additions and 0 deletions

5
postgres/budgets.sql Normal file
View File

@ -0,0 +1,5 @@
CREATE TABLE budgets (
id char(26),
name text,
last_modification timestamp with time zone
);