aboutsummaryrefslogtreecommitdiff
path: root/app/SQL/install.sql.mysql.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-08-08 22:56:32 +0200
committerGravatar GitHub <noreply@github.com> 2024-08-08 22:56:32 +0200
commite08574a47d33c74eccc0675248a8d83ca205fed2 (patch)
tree117f302621bc696a6909a0cc90cb82bc83747bfc /app/SQL/install.sql.mysql.php
parentb034ce2ccbc3363127d96fdc3ede298374f2c5bc (diff)
SQL single quote string literals (#6701)
https://www.sqlite.org/quirks.html#double_quoted_string_literals_are_accepted fix https://github.com/FreshRSS/FreshRSS/issues/6602 And MySQL at the same time https://dev.mysql.com/doc/refman/9.0/en/string-literals.html
Diffstat (limited to 'app/SQL/install.sql.mysql.php')
-rw-r--r--app/SQL/install.sql.mysql.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/SQL/install.sql.mysql.php b/app/SQL/install.sql.mysql.php
index 6c766d5c7..40553608a 100644
--- a/app/SQL/install.sql.mysql.php
+++ b/app/SQL/install.sql.mysql.php
@@ -65,7 +65,7 @@ CREATE TABLE IF NOT EXISTS `_entry` (
) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci
ENGINE = INNODB;
-INSERT IGNORE INTO `_category` (id, name) VALUES(1, "Uncategorized");
+INSERT IGNORE INTO `_category` (id, name) VALUES(1, 'Uncategorized');
CREATE TABLE IF NOT EXISTS `_entrytmp` ( -- v1.7
`id` BIGINT NOT NULL,