From 3abe7df3fbc12a8df259f48c746f2b9344a5f33c Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 3 Jun 2024 14:57:47 +0000 Subject: fix: bump rust and update accordingly --- crates/whirl_db/src/schema.rs | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'crates/whirl_db/src') diff --git a/crates/whirl_db/src/schema.rs b/crates/whirl_db/src/schema.rs index 6d58598..318028e 100644 --- a/crates/whirl_db/src/schema.rs +++ b/crates/whirl_db/src/schema.rs @@ -1,4 +1,6 @@ -table! { +// @generated automatically by Diesel CLI. + +diesel::table! { serial_numbers (user_name) { serial_number -> Text, user_name -> Text, @@ -6,7 +8,7 @@ table! { } } -table! { +diesel::table! { user_properties (user_name) { user_name -> Text, property_id -> Integer, @@ -17,12 +19,12 @@ table! { } } -table! { +diesel::table! { user_registration (user_name) { user_name_lower -> Text, user_name -> Text, serial_number -> Text, - password -> Text, + pass_wordword -> Text, client_version -> Text, account_status -> Integer, registration_date -> Text, @@ -32,4 +34,8 @@ table! { } } -allow_tables_to_appear_in_same_query!(serial_numbers, user_properties, user_registration,); +diesel::allow_tables_to_appear_in_same_query!( + serial_numbers, + user_properties, + user_registration, +); -- cgit v1.2.3