From 0783707e838da980e25814a9899fedc2d1484ec2 Mon Sep 17 00:00:00 2001 From: Andrew Farries Date: Wed, 10 Jan 2024 11:59:42 +0000 Subject: [PATCH] Update `docs/README.md` Add the `comment` field to the documentation. --- docs/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/README.md b/docs/README.md index 2bea182b2..891af5061 100644 --- a/docs/README.md +++ b/docs/README.md @@ -698,6 +698,7 @@ An add column operation creates a new column on an existing table. "column": { "name": "name of column", "type": "postgres type", + "comment": "postgres comment for the column", "nullable": true|false, "unique": true|false, "pk": true|false, @@ -911,6 +912,7 @@ where each `column` is defined as: { "name": "column name", "type": "postgres type", + "comment": "postgres comment for the column", "nullable": true|false, "unique": true|false, "pk": true|false,