Fix DB convention typo (#6347)

This commit is contained in:
qwerty287
2026-03-30 14:18:27 +02:00
committed by GitHub
parent fde1d917e2
commit 284b1431da
3 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -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

View File

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