Skip to content
Snippets Groups Projects
Commit d85e5c19 authored by Stephen D's avatar Stephen D
Browse files

cargo fmt

parent 08712642
No related branches found
No related tags found
1 merge request!9Starboard
Pipeline #277 passed
table! { table! {
server_settings (id) { server_settings (id) {
id -> Int4, id -> Int4,
guild_id -> Numeric, guild_id -> Numeric,
starboard_threshold -> Int4, starboard_threshold -> Int4,
starboard_emoji_id -> Numeric, starboard_emoji_id -> Numeric,
starboard_channel -> Numeric, starboard_channel -> Numeric,
} }
} }
table! { table! {
starboard_mappings (original_id) { starboard_mappings (original_id) {
original_id -> Numeric, original_id -> Numeric,
repost_id -> Nullable<Numeric>, repost_id -> Nullable<Numeric>,
} }
} }
table! { table! {
user_programs (id) { user_programs (id) {
id -> Int4, id -> Int4,
discord_user_id -> Numeric, discord_user_id -> Numeric,
name -> Varchar, name -> Varchar,
code -> Text, code -> Text,
published -> Int4, published -> Int4,
} }
} }
allow_tables_to_appear_in_same_query!( allow_tables_to_appear_in_same_query!(server_settings, starboard_mappings, user_programs,);
server_settings,
starboard_mappings,
user_programs,
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment