From 3d0fc6f245bcef954b3b94d4f2b3b0ab95113ce4 Mon Sep 17 00:00:00 2001 From: Andrew Farries Date: Tue, 5 Dec 2023 09:46:36 +0000 Subject: [PATCH] Clarify rules for quoting string literals --- docs/README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/README.md b/docs/README.md index c54c22610..810a1a0e7 100644 --- a/docs/README.md +++ b/docs/README.md @@ -716,6 +716,8 @@ An add column operation creates a new column on an existing table. } ``` +Default values are subject to the usual rules for quoting SQL expressions. In particular string literals should be surrounded with single quotes. + Example **add column** migrations: * [03_add_column.json](../examples/03_add_column.json) @@ -924,6 +926,8 @@ where each `column` is defined as: }, ``` +Default values are subject to the usual rules for quoting SQL expressions. In particular string literals should be surrounded with single quotes. + Example **create table** migrations: * [01_create_tables.json](../examples/01_create_tables.json)