From d1f7faaca8bda13d3244cf3c6450c738b4ddca5b Mon Sep 17 00:00:00 2001 From: Constantine Molchanov Date: Tue, 30 Jan 2024 23:32:54 +0400 Subject: [PATCH] Fix typo. --- book/models.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/models.nim b/book/models.nim index c1f8e61e..3bd1ddf4 100644 --- a/book/models.nim +++ b/book/models.nim @@ -90,7 +90,7 @@ This will result in this schema: CREATE TABLE IF NOT EXISTS "ThingTable"(attr TEXT NOT NULL, id INTEGER NOT NULL PRIMARY KEY) -## Custom Table Name (PostgreSQL only) +## Custom Schema Name (PostgreSQL only) PostgreSQL schemas are named collections of tables (`read more in the docs `__).