From 284b1431da60a8ee83b3e2e8d2d5a371ce47e465 Mon Sep 17 00:00:00 2001 From: qwerty287 <80460567+qwerty287@users.noreply.github.com> Date: Mon, 30 Mar 2026 14:18:27 +0200 Subject: [PATCH] Fix DB convention typo (#6347) --- docs/docs/92-development/06-conventions.md | 2 +- docs/docs/92-development/09-testing.md | 2 +- .../version-3.13/92-development/06-conventions.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/92-development/06-conventions.md b/docs/docs/92-development/06-conventions.md index e94a90c43..d79e07811 100644 --- a/docs/docs/92-development/06-conventions.md +++ b/docs/docs/92-development/06-conventions.md @@ -4,4 +4,4 @@ Database tables are named plural, columns don't have any prefix. -Example: Table name `agent`, columns `id`, `name`. +Example: Model name `Agent` with table name `agents` and columns `id`, `name`. diff --git a/docs/docs/92-development/09-testing.md b/docs/docs/92-development/09-testing.md index f27f71130..dd2604cdf 100644 --- a/docs/docs/92-development/09-testing.md +++ b/docs/docs/92-development/09-testing.md @@ -5,7 +5,7 @@ ### Unit Tests [We use default golang unit tests](https://go.dev/doc/tutorial/add-a-test) -with [`"github.com/stretchr/testify/assert"`](https://pkg.go.dev/github.com/stretchr/testify@v1.9.0/assert) to simplify testing. +with [`"github.com/stretchr/testify/assert"`](https://pkg.go.dev/github.com/stretchr/testify/assert) to simplify testing. ### Integration Tests diff --git a/docs/versioned_docs/version-3.13/92-development/06-conventions.md b/docs/versioned_docs/version-3.13/92-development/06-conventions.md index e94a90c43..d79e07811 100644 --- a/docs/versioned_docs/version-3.13/92-development/06-conventions.md +++ b/docs/versioned_docs/version-3.13/92-development/06-conventions.md @@ -4,4 +4,4 @@ Database tables are named plural, columns don't have any prefix. -Example: Table name `agent`, columns `id`, `name`. +Example: Model name `Agent` with table name `agents` and columns `id`, `name`.