From e2d288ce50268cd92da1b1de1dcb288cabf6479b Mon Sep 17 00:00:00 2001 From: Josh Bielick Date: Tue, 19 Mar 2019 13:03:32 -0400 Subject: [PATCH] add quotes to SQL date in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 109975fe..3a64f7bc 100644 --- a/README.md +++ b/README.md @@ -747,7 +747,7 @@ version is self-contained (see the Diffing section above for more) you can simply delete any records you don't want any more. For example: ```sql -sql> delete from versions where created_at < 2010-06-01; +sql> delete from versions where created_at < '2010-06-01'; ``` ```ruby