fix: replace username with first and last name and use user_id UUID for primary keys #32

Merged
realaravinth merged 5 commits from user-di into master 2024-07-14 22:53:49 +05:30
Showing only changes of commit a3d17179d6 - Show all commits

View file

@ -150,6 +150,7 @@ pub mod tests {
let mut db_url = Url::parse(&settings.database.url).unwrap();
db_url.set_path(&GenerateRandomString.get_random(12));
settings.database.url = db_url.to_string();
settings.database.pool = 1;
settings
}