summaryrefslogtreecommitdiff
path: root/src/application/mystic/forum/orm/Attachment.php
diff options
context:
space:
mode:
authorJonas Kohl2024-09-12 19:49:17 +0200
committerJonas Kohl2024-09-12 19:49:17 +0200
commit086e2d2668784469ec114f6e6fd2b3dace3d7c3b (patch)
treeb9bacedb713501d88d24085940267a7c94e69b29 /src/application/mystic/forum/orm/Attachment.php
parent34b1b391d4b03659a96f868857c230002b351514 (diff)
Way more progress on forum
Diffstat (limited to 'src/application/mystic/forum/orm/Attachment.php')
-rw-r--r--src/application/mystic/forum/orm/Attachment.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/application/mystic/forum/orm/Attachment.php b/src/application/mystic/forum/orm/Attachment.php
new file mode 100644
index 0000000..64e357c
--- /dev/null
+++ b/src/application/mystic/forum/orm/Attachment.php
@@ -0,0 +1,18 @@
+<?php
+declare(strict_types=1);
+
+namespace mystic\forum\orm;
+
+use mystic\forum\attributes\Column;
+use mystic\forum\attributes\PrimaryKey;
+use mystic\forum\attributes\References;
+use mystic\forum\attributes\Table;
+
+#[Table("public.attachments")]
+class Attachment extends Entity {
+ #[PrimaryKey] public string $id;
+ #[References("public.posts", onDelete: References::CASCADE)] public string $postId;
+ public string $name;
+ public string $mimeType;
+ #[Column(columnType: "bytea")] public string $contents;
+}