Switch the main DB to sqlite

This commit is contained in:
Valentin Tolmer
2021-04-11 23:01:24 +02:00
parent a765d77b53
commit f68c45b1c3
4 changed files with 9 additions and 8 deletions

View File

@@ -358,6 +358,7 @@ mod tests {
display_name: "Bôb Böbberson".to_string(),
first_name: "Bôb".to_string(),
last_name: "Böbberson".to_string(),
creation_date: NaiveDateTime::from_timestamp(1_000_000, 0),
},
User {
user_id: "jim".to_string(),
@@ -365,6 +366,7 @@ mod tests {
display_name: "Jimminy Cricket".to_string(),
first_name: "Jim".to_string(),
last_name: "Cricket".to_string(),
creation_date: NaiveDateTime::from_timestamp(1_500_000, 0),
},
])
});