Added transaction categories tables

This commit is contained in:
Finn 2018-01-11 14:00:20 +00:00
parent 2f9673edcd
commit 8531d73930
3 changed files with 80 additions and 0 deletions

View file

@ -71,4 +71,9 @@ __PACKAGE__->belongs_to(
{ is_deferrable => 0, on_delete => "NO ACTION", on_update => "NO ACTION" },
);
__PACKAGE__->might_have(
"category",
"Pear::LocalLoop::Schema::Result::TransactionCategory" => "transaction_id",
);
1;