1
2
3
4
5
6
7
8
9
10
11
use schema_connector::ConnectorError;
use user_facing_errors::schema_engine::MigrateSystemDatabase;

#[derive(Debug)]
pub(crate) struct SystemDatabase(pub(crate) String);

impl From<SystemDatabase> for ConnectorError {
    fn from(err: SystemDatabase) -> ConnectorError {
        ConnectorError::user_facing(MigrateSystemDatabase { database_name: err.0 })
    }
}