Gabriel Nascimento

Results 1 comments of Gabriel Nascimento

I encountered the same issue. Initially, I was using the following code: ```rust let pool = SqlitePool::connect_with(options).await?; sqlx::migrate!("./migrations") .run(&pool) .await?; ``` To resolve it, I added SqliteConnectOptions with create_if_missing(true), which...