diff --git a/src/schema.rs b/src/schema.rs index 4a883c63425e0e2a5e64207792079a9764683d35..925378768a3e25685860c3e62d39c746a9d991c6 100644 --- a/src/schema.rs +++ b/src/schema.rs @@ -1,32 +1,28 @@ table! { - server_settings (id) { - id -> Int4, - guild_id -> Numeric, - starboard_threshold -> Int4, - starboard_emoji_id -> Numeric, - starboard_channel -> Numeric, - } + server_settings (id) { + id -> Int4, + guild_id -> Numeric, + starboard_threshold -> Int4, + starboard_emoji_id -> Numeric, + starboard_channel -> Numeric, + } } table! { - starboard_mappings (original_id) { - original_id -> Numeric, - repost_id -> Nullable<Numeric>, - } + starboard_mappings (original_id) { + original_id -> Numeric, + repost_id -> Nullable<Numeric>, + } } table! { - user_programs (id) { - id -> Int4, - discord_user_id -> Numeric, - name -> Varchar, - code -> Text, - published -> Int4, - } + user_programs (id) { + id -> Int4, + discord_user_id -> Numeric, + name -> Varchar, + code -> Text, + published -> Int4, + } } -allow_tables_to_appear_in_same_query!( - server_settings, - starboard_mappings, - user_programs, -); +allow_tables_to_appear_in_same_query!(server_settings, starboard_mappings, user_programs,);