From f49148a85aeb0a4d4797962e014e2edafc6e89cd Mon Sep 17 00:00:00 2001 From: HueByte Date: Fri, 20 Feb 2026 17:29:52 +0100 Subject: [PATCH] fix: format table in encryption documentation for better readability --- docs/articles/encryption.md | 8 ++++---- .../Migrations/20260220133627_AddEncryptionSupport.cs | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/articles/encryption.md b/docs/articles/encryption.md index f8ac5ae..4c0210d 100644 --- a/docs/articles/encryption.md +++ b/docs/articles/encryption.md @@ -79,10 +79,10 @@ To encrypt messages at rest, enable the setting: ### Behavior by Setting -| Setting | DB Storage | Transport | Key Rotation Risk | -|---------|-----------|-----------|-------------------| -| `false` (default) | Plaintext | Encrypted | None — stored data is unaffected | -| `true` | Encrypted | Encrypted | Changing the key makes old messages unreadable | +| Setting | DB Storage | Transport | Key Rotation Risk | +| ----------------- | ---------- | --------- | ---------------------------------------------- | +| `false` (default) | Plaintext | Encrypted | None - stored data is unaffected | +| `true` | Encrypted | Encrypted | Changing the key makes old messages unreadable | ### Mixed Content diff --git a/src/EchoHub.Server/Data/Migrations/20260220133627_AddEncryptionSupport.cs b/src/EchoHub.Server/Data/Migrations/20260220133627_AddEncryptionSupport.cs index d75598c..76676ff 100644 --- a/src/EchoHub.Server/Data/Migrations/20260220133627_AddEncryptionSupport.cs +++ b/src/EchoHub.Server/Data/Migrations/20260220133627_AddEncryptionSupport.cs @@ -1,4 +1,4 @@ -using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Migrations; #nullable disable