1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2026-06-03 16:35:37 +02:00

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