ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 24,681
- Points
- 823
Reputation:
I am trying to build a relation from addon1 to addon2 (one to one), but it's not working. Something missing on my configuration?
On the example below, what does 'Category' relation refers to, can be any name? Is my 'entity' correct to point to another addon?
ADDON 1
Code:
Read more
Continue reading...
On the example below, what does 'Category' relation refers to, can be any name? Is my 'entity' correct to point to another addon?
ADDON 1
Code:
Code:
// ...
$structure->columns = [
'product_id' => ['type' => self::UINT, 'autoIncrement' => true],
'product' => ['type' => self::STR, 'maxLength' => 50, 'default' => '']
'category_id' => ['type'...
Read more
Continue reading...