Entity Assoiciations added to database
This commit is contained in:
parent
cb9c219b27
commit
d36091528f
2 changed files with 46 additions and 0 deletions
|
@ -44,6 +44,13 @@ __PACKAGE__->has_many(
|
|||
{ cascade_copy => 0, cascade_delete => 0 },
|
||||
);
|
||||
|
||||
__PACKAGE__->has_many(
|
||||
"associations",
|
||||
"Pear::LocalLoop::Schema::Result::EntityAssociation",
|
||||
{ "foreign.entity_id" => "self.id" },
|
||||
{ cascade_copy => 0, cascade_delete => 0 },
|
||||
);
|
||||
|
||||
__PACKAGE__->has_many(
|
||||
"sales",
|
||||
"Pear::LocalLoop::Schema::Result::Transaction",
|
||||
|
|
Reference in a new issue