Added transaction categories tables
This commit is contained in:
parent
2f9673edcd
commit
8531d73930
3 changed files with 80 additions and 0 deletions
|
@ -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;
|
||||
|
|
Reference in a new issue