aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/model/entities/Node.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/model/entities/Node.php b/src/model/entities/Node.php
index 2034b3d..db081e4 100644
--- a/src/model/entities/Node.php
+++ b/src/model/entities/Node.php
@@ -22,9 +22,6 @@ class Node
22 #[ORM\Column(type: "string", length: 255)] 22 #[ORM\Column(type: "string", length: 255)]
23 private string $name_node; 23 private string $name_node;
24 24
25 #[ORM\Column(type: "string", length: 255, unique: true, nullable: true)]
26 private ?string $article_timestamp;
27
28 #[ORM\Column(type: "json", nullable: true)] // type: "json" crée un longtext avec mariadb 25 #[ORM\Column(type: "json", nullable: true)] // type: "json" crée un longtext avec mariadb
29 private ?array $attributes = null; 26 private ?array $attributes = null;
30 27
@@ -80,10 +77,6 @@ class Node
80 { 77 {
81 $this->name_node = $name; 78 $this->name_node = $name;
82 }*/ 79 }*/
83 public function getArticleTimestamp(): string
84 {
85 return $this->article_timestamp;
86 }
87 public function getAttributes(): array 80 public function getAttributes(): array
88 { 81 {
89 return $this->attributes; 82 return $this->attributes;