You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
use mediarepo_core::error::{RepoDatabaseResult};
|
|
|
|
use crate::database::RepoDatabase;
|
|
|
|
use sea_orm::{DatabaseConnection, Database};
|
|
|
|
|
|
|
|
|
|
|
|
pub mod entities;
|
|
|
|
|
|
|
|
/// Connects to the database, runs migrations and returns the RepoDatabase wrapper type
|
|
|
|
pub async fn get_database<S: AsRef<str>>(uri: S) -> RepoDatabaseResult<DatabaseConnection> {
|
|
|
|
migrate(uri.as_ref()).await?;
|
|
|
|
let conn = Database::connect(uri).await?;
|
|
|
|
|
|
|
|
Ok(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn migrate(uri: &str) -> RepoDatabaseResult<()> {
|
|
|
|
use sqlx::Connection;
|
|
|
|
let mut conn = sqlx::SqliteConnection::connect(uri).await?;
|
|
|
|
sqlx::migrate!().run(&mut conn).await?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|