diff options
author | polo <ordipolo@gmx.fr> | 2025-10-19 15:19:57 +0200 |
---|---|---|
committer | polo <ordipolo@gmx.fr> | 2025-10-19 15:19:57 +0200 |
commit | c725b90980ef3483514b9d62bed91ebdcf8923c4 (patch) | |
tree | 92a32efa960a2cc23e7532c7655ab5f05f82f86a /src | |
parent | 61a907785d9382adeb2de05b4b080de1d270f6d0 (diff) | |
download | cms-c725b90980ef3483514b9d62bed91ebdcf8923c4.zip |
champ article_timestamp définitivement supprimé!
Diffstat (limited to 'src')
-rw-r--r-- | src/model/entities/Node.php | 7 |
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; |