From 14adc9fdf7d8e36480dcccaec764712ce9127f19 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Thu, 6 Feb 2025 19:48:36 -0500 Subject: [PATCH] Add tags field --- lib/DB/Post.rakumod | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/DB/Post.rakumod b/lib/DB/Post.rakumod index ed0819d..be80a59 100644 --- a/lib/DB/Post.rakumod +++ b/lib/DB/Post.rakumod @@ -36,6 +36,8 @@ DateTime:D @.edited-at = []; #| An optional list of extra slugs to use for this post has Str:D @.slugs is json = []; +#| An optional list of tags for this post +has Str:D @.tags is json = []; #| Should the post be hidden from the main list has Bool:D $.hidden is json is rw = False;