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]
name = "rphotos"
version = "0.8.2"
version = "0.8.3-PRE"
authors = ["Rasmus Kaj <kaj@kth.se>"]
edition = "2018"

View File

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