We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
id
1 parent dd74439 commit 8e5a816Copy full SHA for 8e5a816
library/Icingadb/Model/DependencyEdge.php
@@ -13,6 +13,7 @@
13
/**
14
* Dependency edge model.
15
*
16
+ * @property string $id
17
* @property string $environment_id
18
* @property string $to_node_id
19
* @property string $from_node_id
@@ -30,9 +31,9 @@ public function getTableName(): string
30
31
return 'dependency_edge';
32
}
33
- public function getKeyName(): array
34
+ public function getKeyName(): string
35
{
- return ['to_node_id', 'from_node_id'];
36
+ return 'id';
37
38
39
public function getColumns(): array
@@ -49,6 +50,7 @@ public function getColumns(): array
49
50
public function createBehaviors(Behaviors $behaviors): void
51
52
$behaviors->add(new Binary([
53
+ 'id',
54
'environment_id',
55
'to_node_id',
56
'from_node_id',
0 commit comments