diff options
| author | Fuwn <[email protected]> | 2024-06-03 14:57:47 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-03 14:57:47 -0700 |
| commit | a6b766541ae58053ae705e0559d1a1ae8212634b (patch) | |
| tree | aeb55206e77679b2f5e1f47fae7f1bda5c6df5b9 /crates/whirl_db/src | |
| parent | Merge pull request #153 from Whirlsplash/renovate/actions-checkout-3.x (diff) | |
| download | whirl-old.tar.xz whirl-old.zip | |
fix: bump rust and update accordinglyold
Diffstat (limited to 'crates/whirl_db/src')
| -rw-r--r-- | crates/whirl_db/src/schema.rs | 16 |
1 files changed, 11 insertions, 5 deletions
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, +); |