|
| 1 | +diff --git a/src/schema.rs b/src/schema.rs |
| 2 | +index df884e4..18e08cd 100644 |
1 | 3 | --- a/src/schema.rs
|
2 | 4 | +++ b/src/schema.rs
|
3 |
| -@@ -1,5 +1,7 @@ |
| 5 | +@@ -1,6 +1,8 @@ |
4 | 6 | +#![allow(unused_imports)]
|
5 | 7 | +
|
6 | 8 | table! {
|
7 | 9 | use diesel::sql_types::*;
|
8 | 10 | use diesel_full_text_search::{TsVector as Tsvector};
|
| 11 | + use diesel_ltree::Ltree; |
9 | 12 |
|
10 | 13 | /// Representation of the `api_tokens` table.
|
11 |
| -@@ -588,10 +590,28 @@ table! { |
| 14 | +@@ -608,12 +610,30 @@ table! { |
| 15 | + /// (Automatically generated by Diesel.) |
12 | 16 | rendered_at -> Timestamp,
|
13 | 17 | }
|
14 | 18 | }
|
|
34 | 38 | +table! {
|
35 | 39 | use diesel::sql_types::*;
|
36 | 40 | use diesel_full_text_search::{TsVector as Tsvector};
|
| 41 | + use diesel_ltree::Ltree; |
37 | 42 |
|
38 | 43 | /// Representation of the `reserved_crate_names` table.
|
39 | 44 | ///
|
40 |
| -@@ -849,21 +869,23 @@ table! { |
| 45 | +@@ -881,22 +901,24 @@ table! { |
| 46 | + } |
41 | 47 |
|
42 | 48 | joinable!(api_tokens -> users (user_id));
|
43 | 49 | joinable!(crate_downloads -> crates (crate_id));
|
|
62 | 68 | joinable!(version_downloads -> versions (version_id));
|
63 | 69 | joinable!(versions -> crates (crate_id));
|
64 | 70 |
|
65 |
| -@@ -881,10 +903,11 @@ allow_tables_to_appear_in_same_query!( |
| 71 | +@@ -913,12 +935,13 @@ allow_tables_to_appear_in_same_query!( |
| 72 | + dependencies, |
66 | 73 | emails,
|
67 | 74 | follows,
|
68 | 75 | keywords,
|
|
74 | 81 | users,
|
75 | 82 | version_authors,
|
76 | 83 | version_downloads,
|
| 84 | + versions, |
0 commit comments