Update Diesel schema

This commit is contained in:
Konrad Borowski 2021-06-13 19:43:38 +02:00
parent f687b382b1
commit 21d554225f

View File

@ -1,13 +1,3 @@
table! {
implementations (implementation_id) {
implementation_id -> Int4,
language_id -> Int4,
identifier -> Text,
label -> Text,
ordering -> Int4,
}
}
table! {
implementation_wrappers (implementation_wrapper_id) {
implementation_wrapper_id -> Int4,
@ -21,6 +11,16 @@ table! {
}
}
table! {
implementations (implementation_id) {
implementation_id -> Int4,
language_id -> Int4,
identifier -> Text,
label -> Text,
ordering -> Int4,
}
}
table! {
languages (language_id) {
language_id -> Int4,
@ -50,4 +50,4 @@ joinable!(implementation_wrappers -> implementations (implementation_id));
joinable!(implementations -> languages (language_id));
joinable!(pastes -> languages (language_id));
allow_tables_to_appear_in_same_query!(implementations, implementation_wrappers, languages, pastes,);
allow_tables_to_appear_in_same_query!(implementation_wrappers, implementations, languages, pastes,);