Added category, added pie chart on categories, removed buggy ba-resize plugin.

This commit is contained in:
Alexis Lahouze
2013-01-12 22:11:48 +01:00
parent 6f36d7970f
commit 868cf3138a
5 changed files with 155 additions and 77 deletions

View File

@ -12,7 +12,8 @@ CREATE TABLE "entry" (
"label" VARCHAR(500) NOT NULL,
"comment" VARCHAR(500),
"value" NUMERIC(15,4) NOT NULL,
"account_id" INTEGER NOT NULL REFERENCES "account"("id")
"account_id" INTEGER NOT NULL REFERENCES "account"("id"),
"category" VARCHAR(100),
);
CREATE INDEX on entry(value_date);