From 69196b2986d8c579a2e95308cecd930dc7b6d5e4 Mon Sep 17 00:00:00 2001 From: Ben Peachey Date: Fri, 26 May 2023 01:04:29 +0200 Subject: [PATCH] Fix typo in sqlstore migrations guide. (#23481) Automatic Merge --- server/boards/services/store/sqlstore/migrations/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/boards/services/store/sqlstore/migrations/README.md b/server/boards/services/store/sqlstore/migrations/README.md index 78e6d79820..21cb9d8698 100644 --- a/server/boards/services/store/sqlstore/migrations/README.md +++ b/server/boards/services/store/sqlstore/migrations/README.md @@ -7,7 +7,7 @@ The following built-in variables are available: | Name | Syntax | Description | | ----- | ----- | ----- | | schemaName | {{ .schemaName }} | Returns the database/schema name (e.g. `mattermost_`, `mattermost_test`, `public`, ...) | -| prefix | {{ .prefix }} | Returns the table name prefix (e.g. `focalbaord_`) | +| prefix | {{ .prefix }} | Returns the table name prefix (e.g. `focalboard_`) | | postgres | {{if .postgres }} ... {{end}} | Returns true if the current database is Postgres. | | sqlite | {{if .sqlite }} ... {{end}} | Returns true if the current database is Sqlite3. | | mysql | {{if .mysql }} ... {{end}} | Returns true if the current database is MySQL. |