diff options
Diffstat (limited to 'src/application/mystic/forum/orm')
| -rw-r--r-- | src/application/mystic/forum/orm/TopicLogMessage.php | 23 | 
1 files changed, 23 insertions, 0 deletions
| diff --git a/src/application/mystic/forum/orm/TopicLogMessage.php b/src/application/mystic/forum/orm/TopicLogMessage.php new file mode 100644 index 0000000..1caa3c5 --- /dev/null +++ b/src/application/mystic/forum/orm/TopicLogMessage.php @@ -0,0 +1,23 @@ +<?php +declare(strict_types=1); + +namespace mystic\forum\orm; + +use mystic\forum\attributes\DefaultValue; +use mystic\forum\attributes\PrimaryKey; +use mystic\forum\attributes\References; +use mystic\forum\attributes\Table; + +#[Table("public.topic_log")] +class TopicLogMessage extends Entity { +    public const TITLE_CHANGED = 200; +    public const LOCKED = 201; +    public const UNLOCKED = 202; + +    #[PrimaryKey] public string $id; +    #[References("public.topics", onDelete: References::CASCADE)] public string $topicId; +    public int $type; +    public \DateTimeImmutable $postDate; +    public array $params; +    #[References("public.users", onDelete: References::SET_NULL)] public ?string $authorId; +} |