Skip to content

Commit 15c878d

Browse files
committed
regenerate schema.rs with a recent Diesel version
1 parent a7bd997 commit 15c878d

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

src/schema.rs

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -598,24 +598,6 @@ table! {
598598
}
599599
}
600600

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-
619601
table! {
620602
use diesel::sql_types::*;
621603
use diesel_full_text_search::{TsVector as Tsvector};
@@ -656,6 +638,24 @@ table! {
656638
}
657639
}
658640

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+
659659
table! {
660660
use diesel::sql_types::*;
661661
use diesel_full_text_search::{TsVector as Tsvector};

0 commit comments

Comments
 (0)