1
0
Fork 0

Revert "Begin add diesel"

This reverts commit 566246ff3b.
This commit is contained in:
Florian RICHER 2023-01-02 21:09:46 +01:00
parent 566246ff3b
commit e4e39fa0a9
16 changed files with 7 additions and 184 deletions

View file

@ -1,54 +0,0 @@
// @generated automatically by Diesel CLI.
diesel::table! {
artists (id) {
id -> Nullable<Integer>,
artist_name -> Text,
artist_url -> Text,
date -> Integer,
author -> Text,
author_url -> Text,
}
}
diesel::table! {
labels (id) {
id -> Nullable<Integer>,
artist_name -> Text,
artist_url -> Text,
date -> Integer,
author -> Text,
author_url -> Text,
}
}
diesel::table! {
musicians (id) {
id -> Nullable<Integer>,
artist_name -> Text,
artist_url -> Text,
date -> Integer,
author -> Text,
author_url -> Text,
}
}
diesel::table! {
releases (id) {
id -> Nullable<Integer>,
artist_name -> Text,
artist_url -> Text,
album -> Text,
album_url -> Text,
date -> Integer,
author -> Text,
author_url -> Text,
}
}
diesel::allow_tables_to_appear_in_same_query!(
artists,
labels,
musicians,
releases,
);