diff options
author | offl <11556157+offl@users.noreply.github.com> | 2022-04-02 17:42:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-02 17:42:43 +0300 |
commit | 5c49e63ec19e14f7dcbe86fa9ad5c4c486e54322 (patch) | |
tree | 2855aab87ff7fec6aef5a244f14cb1745c9b8dbf /.github | |
parent | 0b318230a60d6bbd7506fbb134fa5d3c9db79ed7 (diff) |
CI/GitHub: Update basic guideline in issue form for SQL fixes
Diffstat (limited to '.github')
-rw-r--r-- | .github/ISSUE_TEMPLATE/sql_fix.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/ISSUE_TEMPLATE/sql_fix.yml b/.github/ISSUE_TEMPLATE/sql_fix.yml index e0685ed8bae..fa7829df0da 100644 --- a/.github/ISSUE_TEMPLATE/sql_fix.yml +++ b/.github/ISSUE_TEMPLATE/sql_fix.yml @@ -16,7 +16,7 @@ body: - don't use ' around numbers - don't use ( ) if they aren't needed - use only one INSERT INTO statement when you add multiple rows to one table, unless you are scripting multiple creatures - - always add every row you insert below INSERT INTO statement + - always add every row you insert below INSERT INTO statement (each row inside new row) - always use capital letters for all keywords (DELETE, FROM, SELECT, WHERE, IN, etc.) - always use backticks for every column and table name - always include column names in every INSERT INTO statement |