about summary refs log tree commit diff
path: root/src/schema.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/schema.rs')
-rw-r--r--src/schema.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/schema.rs b/src/schema.rs
new file mode 100644
index 000000000000..a899f52ac2cc
--- /dev/null
+++ b/src/schema.rs
@@ -0,0 +1,24 @@
+table! {
+    posts (id) {
+        id -> Int4,
+        thread -> Int4,
+        body -> Text,
+        posted -> Timestamptz,
+    }
+}
+
+table! {
+    threads (id) {
+        id -> Int4,
+        title -> Varchar,
+        body -> Text,
+        posted -> Timestamptz,
+    }
+}
+
+joinable!(posts -> threads (thread));
+
+allow_tables_to_appear_in_same_query!(
+    posts,
+    threads,
+);