From 942d8516a939baa98b042cac7f4feb4522b51ec3 Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Wed, 10 Nov 2021 11:04:30 +0100 Subject: [PATCH] Document UseUpperSnakeCaseNamingConvention See #31 --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8b1a46d..816ad66 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ SELECT c.id, c.full_name * UseLowerCaseNamingConvention: `FullName` becomes `fullname` * UseCamelCaseNamingConvention: `FullName` becomes `fullName` * UseUpperCaseNamingConvention: `FullName` becomes `FULLNAME` +* UseUpperSnakeCaseNamingConvention: `FullName` becomes `FULL_NAME` Have another naming convention in mind? Open an issue or even submit a PR - it's pretty easy to do!