aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authoroffl <11556157+offl@users.noreply.github.com>2022-04-02 17:42:43 +0300
committerGitHub <noreply@github.com>2022-04-02 17:42:43 +0300
commit5c49e63ec19e14f7dcbe86fa9ad5c4c486e54322 (patch)
tree2855aab87ff7fec6aef5a244f14cb1745c9b8dbf /.github
parent0b318230a60d6bbd7506fbb134fa5d3c9db79ed7 (diff)
CI/GitHub: Update basic guideline in issue form for SQL fixes
Diffstat (limited to '.github')
-rw-r--r--.github/ISSUE_TEMPLATE/sql_fix.yml2
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