summaryrefslogtreecommitdiff
path: root/src/schema.rs
diff options
context:
space:
mode:
authorKjetil Orbekk <kjetil.orbekk@gmail.com>2020-02-03 23:00:23 -0500
committerKjetil Orbekk <kjetil.orbekk@gmail.com>2020-02-03 23:00:23 -0500
commite614b1eec14d03e72b6e9fba15129973df1dd704 (patch)
tree18105248e7d4f6a85b5323cea91936200efd1f28 /src/schema.rs
parent6d0a4d03705b96b252a6b29d3b8c188b9c903b89 (diff)
Fix rust warnings by removing dead code
Diffstat (limited to 'src/schema.rs')
-rw-r--r--src/schema.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/schema.rs b/src/schema.rs
index 8748f3c..e605bda 100644
--- a/src/schema.rs
+++ b/src/schema.rs
@@ -36,9 +36,4 @@ table! {
joinable!(strava_tokens -> users (username));
joinable!(tasks -> users (username));
-allow_tables_to_appear_in_same_query!(
- config,
- strava_tokens,
- tasks,
- users,
-);
+allow_tables_to_appear_in_same_query!(config, strava_tokens, tasks, users,);