Migrated the documentations and test cases in the Persistence package to use/name PostgreSQL instead.

This commit is contained in:
2026-08-04 17:46:04 +02:00
parent 8ca31e415c
commit 3d27a27cb1
4 changed files with 15 additions and 15 deletions
@@ -26,7 +26,7 @@ public struct Probe: Sendable {
/// Reports whether the database behind the `Fluent` service is reachable.
///
/// Runs a trivial `SELECT 1` against the default database the cheapest statement both the MySQL/MariaDB and SQLite backends understand so
/// Runs a trivial `SELECT 1` against the default database the cheapest statement both the PostgreSQL and SQLite backends understand so
/// a readiness check does not depend on any particular schema or model. Any failure (connection refused, authentication error, pool exhausted) is
/// reported as not reachable rather than thrown, so callers can map it straight onto a readiness response. A default database that is not an SQL
/// database is likewise reported as not reachable.
@@ -1,4 +1,4 @@
/// The connection parameters for the MySQL/MariaDB backend.
/// The connection parameters for the PostgreSQL backend.
///
/// The executable builds this from its `database.*` configuration; the package itself reads no configuration, so these values arrive as plain data.
public struct Configuration: Sendable {
@@ -28,7 +28,7 @@ public struct Configuration: Sendable {
// MARK: Initializers
/// Creates a set of MySQL/MariaDB connection parameters.
/// Creates a set of PostgreSQL connection parameters.
/// - Parameters:
/// - host: the host the database server is reached at.
/// - port: the port the database server listens on.