Skip to content

Commit

Permalink
update: user.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
HDVinnie committed May 28, 2024
1 parent 6f52d82 commit ccb00fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tracker/user.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl Map {
users.can_download as `can_download: bool`,
CAST(COALESCE(SUM(peers.seeder = 1 AND peers.active = 1 AND peers.visible = 1), 0) AS UNSIGNED) as `num_seeding: u32`,
CAST(COALESCE(SUM(peers.seeder = 0 AND peers.active = 1 AND peers.visible = 1), 0) AS UNSIGNED) as `num_leeching: u32`,
users.is_donor as `is_donor: bool`
users.is_donor as `is_donor: bool`,
users.is_lifetime as `is_lifetime: bool`
FROM
users
Expand Down

0 comments on commit ccb00fe

Please sign in to comment.