From 0665544949c632f4182df546be36cf21733ca78f Mon Sep 17 00:00:00 2001 From: Patrick Hemmer Date: Tue, 1 Feb 2022 12:55:53 -0500 Subject: [PATCH] outputs.postgresql: fix tags_as_foreign_keys typo in README --- plugins/outputs/postgresql/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/outputs/postgresql/README.md b/plugins/outputs/postgresql/README.md index 8a0c72d9fd8c3..b58a32db34d5d 100644 --- a/plugins/outputs/postgresql/README.md +++ b/plugins/outputs/postgresql/README.md @@ -158,7 +158,7 @@ tag_table_add_column_templates = [ Some PostgreSQL-compatible databases don't allow modification of table schema after initial creation. This example works around the limitation by creating a new table and then using a view to join them together. ```toml -tags_as_foreignkeys = true +tags_as_foreign_keys = true schema = 'telegraf' create_templates = [ '''CREATE TABLE {{ .table }} ({{ .allColumns }})''',