@@ -814,6 +814,35 @@ table! {
814
814
}
815
815
}
816
816
817
+ table ! {
818
+ use diesel:: sql_types:: * ;
819
+ use diesel_full_text_search:: { TsVector as Tsvector } ;
820
+
821
+ /// Representation of the `version_authors` table.
822
+ ///
823
+ /// (Automatically generated by Diesel.)
824
+ version_authors ( id) {
825
+ /// The `id` column of the `version_authors` table.
826
+ ///
827
+ /// Its SQL type is `Int4`.
828
+ ///
829
+ /// (Automatically generated by Diesel.)
830
+ id -> Int4 ,
831
+ /// The `version_id` column of the `version_authors` table.
832
+ ///
833
+ /// Its SQL type is `Int4`.
834
+ ///
835
+ /// (Automatically generated by Diesel.)
836
+ version_id -> Int4 ,
837
+ /// The `name` column of the `version_authors` table.
838
+ ///
839
+ /// Its SQL type is `Varchar`.
840
+ ///
841
+ /// (Automatically generated by Diesel.)
842
+ name -> Varchar ,
843
+ }
844
+ }
845
+
817
846
table ! {
818
847
use diesel:: sql_types:: * ;
819
848
use diesel_full_text_search:: { TsVector as Tsvector } ;
@@ -1021,6 +1050,7 @@ joinable!(publish_limit_buckets -> users (user_id));
1021
1050
joinable ! ( publish_rate_overrides -> users ( user_id) ) ;
1022
1051
joinable ! ( readme_renderings -> versions ( version_id) ) ;
1023
1052
joinable ! ( recent_crate_downloads -> crates ( crate_id) ) ;
1053
+ joinable ! ( version_authors -> versions ( version_id) ) ;
1024
1054
joinable ! ( version_downloads -> versions ( version_id) ) ;
1025
1055
joinable ! ( version_owner_actions -> api_tokens ( api_token_id) ) ;
1026
1056
joinable ! ( version_owner_actions -> users ( user_id) ) ;
@@ -1051,6 +1081,7 @@ allow_tables_to_appear_in_same_query!(
1051
1081
reserved_crate_names,
1052
1082
teams,
1053
1083
users,
1084
+ version_authors,
1054
1085
version_downloads,
1055
1086
version_owner_actions,
1056
1087
versions,
0 commit comments