|
| 1 | +diff --git a/src/schema.rs b/src/schema.rs |
| 2 | +index 1570becc..b1d09d0d 100644 |
| 3 | +--- a/src/schema.rs |
| 4 | ++++ b/src/schema.rs |
| 5 | +@@ -814,35 +814,6 @@ table! { |
| 6 | + } |
| 7 | + } |
| 8 | + |
| 9 | +-table! { |
| 10 | +- use diesel::sql_types::*; |
| 11 | +- use diesel_full_text_search::{TsVector as Tsvector}; |
| 12 | +- |
| 13 | +- /// Representation of the `version_authors` table. |
| 14 | +- /// |
| 15 | +- /// (Automatically generated by Diesel.) |
| 16 | +- version_authors (id) { |
| 17 | +- /// The `id` column of the `version_authors` table. |
| 18 | +- /// |
| 19 | +- /// Its SQL type is `Int4`. |
| 20 | +- /// |
| 21 | +- /// (Automatically generated by Diesel.) |
| 22 | +- id -> Int4, |
| 23 | +- /// The `version_id` column of the `version_authors` table. |
| 24 | +- /// |
| 25 | +- /// Its SQL type is `Int4`. |
| 26 | +- /// |
| 27 | +- /// (Automatically generated by Diesel.) |
| 28 | +- version_id -> Int4, |
| 29 | +- /// The `name` column of the `version_authors` table. |
| 30 | +- /// |
| 31 | +- /// Its SQL type is `Varchar`. |
| 32 | +- /// |
| 33 | +- /// (Automatically generated by Diesel.) |
| 34 | +- name -> Varchar, |
| 35 | +- } |
| 36 | +-} |
| 37 | +- |
| 38 | + table! { |
| 39 | + use diesel::sql_types::*; |
| 40 | + use diesel_full_text_search::{TsVector as Tsvector}; |
| 41 | +@@ -1050,7 +1021,6 @@ joinable!(publish_limit_buckets -> users (user_id)); |
| 42 | + joinable!(publish_rate_overrides -> users (user_id)); |
| 43 | + joinable!(readme_renderings -> versions (version_id)); |
| 44 | + joinable!(recent_crate_downloads -> crates (crate_id)); |
| 45 | +-joinable!(version_authors -> versions (version_id)); |
| 46 | + joinable!(version_downloads -> versions (version_id)); |
| 47 | + joinable!(version_owner_actions -> api_tokens (api_token_id)); |
| 48 | + joinable!(version_owner_actions -> users (user_id)); |
| 49 | +@@ -1081,7 +1051,6 @@ allow_tables_to_appear_in_same_query!( |
| 50 | + reserved_crate_names, |
| 51 | + teams, |
| 52 | + users, |
| 53 | +- version_authors, |
| 54 | + version_downloads, |
| 55 | + version_owner_actions, |
| 56 | + versions, |
0 commit comments