Moved migrations_pg -> migrations and updated relevant references

This commit is contained in:
Imbus 2023-11-28 00:36:11 +01:00
parent 13c5a05bd6
commit 1652419d94
5 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ impl ServerState {
.await
.unwrap();
sqlx::migrate!("./migrations_pg").run(&pool).await.unwrap();
sqlx::migrate!("./migrations").run(&pool).await.unwrap();
match crate::db::db_new_user("imbus".to_string(), "kartellen1234".to_string(), &pool).await
{