Added tags table

This commit is contained in:
Jef Roosens 2021-12-23 23:28:26 +01:00
parent b80a060faf
commit 8284438576
Signed by: Jef Roosens
GPG key ID: B580B976584B5F30
3 changed files with 18 additions and 1 deletions

View file

@ -19,6 +19,13 @@ table! {
}
}
table! {
tags (post_id, value) {
post_id -> Uuid,
value -> Varchar,
}
}
table! {
versions (id) {
id -> Uuid,
@ -31,10 +38,12 @@ table! {
}
joinable!(posts -> sections (section_id));
joinable!(tags -> posts (post_id));
joinable!(versions -> posts (post_id));
allow_tables_to_appear_in_same_query!(
posts,
sections,
tags,
versions,
);