diff options
| author | Fuwn <[email protected]> | 2024-06-03 14:57:47 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-06-03 14:57:47 +0000 |
| commit | 3abe7df3fbc12a8df259f48c746f2b9344a5f33c (patch) | |
| tree | efec8803b8b65db8f56fafe884f879921091805a /crates/whirl_db | |
| parent | Merge pull request #153 from Whirlsplash/renovate/actions-checkout-3.x (diff) | |
| download | whirl-origin/old.tar.xz whirl-origin/old.zip | |
fix: bump rust and update accordinglyorigin/oldold
Diffstat (limited to 'crates/whirl_db')
| -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, +); |