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`.