Postrelease.
Plus minor reordering in schema.rs.
This commit is contained in:
parent
af13a538d9
commit
2bbb899272
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "rphotos"
|
||||
version = "0.8.2"
|
||||
version = "0.8.3-PRE"
|
||||
authors = ["Rasmus Kaj <kaj@kth.se>"]
|
||||
edition = "2018"
|
||||
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user