@@ -598,24 +598,6 @@ table! {
598
598
}
599
599
}
600
600
601
- table ! {
602
- /// Representation of the `recent_crate_downloads` view.
603
- ///
604
- /// This data represents the downloads in the last 90 days.
605
- /// This view does not contain realtime data.
606
- /// It is refreshed by the `update-downloads` script.
607
- recent_crate_downloads ( crate_id) {
608
- /// The `crate_id` column of the `recent_crate_downloads` view.
609
- ///
610
- /// Its SQL type is `Integer`.
611
- crate_id -> Integer ,
612
- /// The `downloads` column of the `recent_crate_downloads` table.
613
- ///
614
- /// Its SQL type is `BigInt`.
615
- downloads -> BigInt ,
616
- }
617
- }
618
-
619
601
table ! {
620
602
use diesel:: sql_types:: * ;
621
603
use diesel_full_text_search:: { TsVector as Tsvector } ;
@@ -656,6 +638,24 @@ table! {
656
638
}
657
639
}
658
640
641
+ table ! {
642
+ /// Representation of the `recent_crate_downloads` view.
643
+ ///
644
+ /// This data represents the downloads in the last 90 days.
645
+ /// This view does not contain realtime data.
646
+ /// It is refreshed by the `update-downloads` script.
647
+ recent_crate_downloads ( crate_id) {
648
+ /// The `crate_id` column of the `recent_crate_downloads` view.
649
+ ///
650
+ /// Its SQL type is `Integer`.
651
+ crate_id -> Integer ,
652
+ /// The `downloads` column of the `recent_crate_downloads` table.
653
+ ///
654
+ /// Its SQL type is `BigInt`.
655
+ downloads -> BigInt ,
656
+ }
657
+ }
658
+
659
659
table ! {
660
660
use diesel:: sql_types:: * ;
661
661
use diesel_full_text_search:: { TsVector as Tsvector } ;
0 commit comments