Migrated the Driver and TLS enumerations in the Persistence package to use PostgreSQL instead.

This commit is contained in:
2026-08-04 17:43:44 +02:00
parent 02ab9671b1
commit d7d2709f88
3 changed files with 84 additions and 50 deletions
@@ -4,10 +4,10 @@
/// that default and stay agnostic of which backend is in use.
public enum Driver: Sendable {
/// A MySQL/MariaDB server, reached with the given connection parameters.
/// A PostgreSQL server, reached with the given connection parameters.
///
/// - Parameter configuration: the host, credentials, TLS posture, and pooling limits the connection is opened with.
case mysql(Configuration)
case postgres(Configuration)
/// An ephemeral, in-process SQLite database held entirely in memory.
///