Postrelease.

Plus minor reordering in schema.rs.
This commit is contained in:
Rasmus Kaj 2020-05-14 20:52:33 +02:00
parent af13a538d9
commit 2bbb899272
2 changed files with 10 additions and 10 deletions

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rphotos" name = "rphotos"
version = "0.8.2" version = "0.8.3-PRE"
authors = ["Rasmus Kaj <kaj@kth.se>"] authors = ["Rasmus Kaj <kaj@kth.se>"]
edition = "2018" edition = "2018"

View File

@ -37,6 +37,14 @@ table! {
} }
} }
table! {
photo_tags (id) {
id -> Int4,
photo_id -> Int4,
tag_id -> Int4,
}
}
table! { table! {
photos (id) { photos (id) {
id -> Int4, id -> Int4,
@ -52,14 +60,6 @@ table! {
} }
} }
table! {
photo_tags (id) {
id -> Int4,
photo_id -> Int4,
tag_id -> Int4,
}
}
table! { table! {
places (id) { places (id) {
id -> Int4, id -> Int4,
@ -111,8 +111,8 @@ allow_tables_to_appear_in_same_query!(
people, people,
photo_people, photo_people,
photo_places, photo_places,
photos,
photo_tags, photo_tags,
photos,
places, places,
positions, positions,
tags, tags,