diff options
| author | 2023-10-31 23:37:16 +0100 | |
|---|---|---|
| committer | 2023-10-31 23:37:16 +0100 | |
| commit | 5a383c105464876fa57caa4eb655276367af6fb9 (patch) | |
| tree | 3cd863ad5daaed732e32709f4d478ea2398eac88 /app/install.php | |
| parent | 72aaea86367797f292d296524a609f05ff175b1c (diff) | |
Update DB recommendations (#5793)
* Update DB recommendations
Favour PostgreSQL, based on tests such as:
https://github.com/FreshRSS/FreshRSS/pull/5648#issuecomment-1715843198
https://github.com/FreshRSS/FreshRSS/issues/5707
SQLite is generally very fine, although with the challenge that the DB model cannot easily be updated https://www.sqlite.org/lang_altertable.html#why_alter_table_is_such_a_problem_for_sqlite
(We should ship a command-line update mechanism)
I have verified that FreshRSS still works with `mysql:5.5.62`
https://hub.docker.com/layers/library/mysql/5.5.62/images/sha256-d404d78aa797c87c255e5ae2beb5d8d0e4d095f930b1f20dc208eaa957477b74?context=explore
* sqlite
Diffstat (limited to 'app/install.php')
| -rw-r--r-- | app/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/install.php b/app/install.php index a404f6f4d..b811f0de7 100644 --- a/app/install.php +++ b/app/install.php @@ -531,7 +531,7 @@ function printStep2(): void { <?php if (extension_loaded('pdo_mysql')) {?> <option value="mysql" <?= isset($_SESSION['bd_type']) && $_SESSION['bd_type'] === 'mysql' ? 'selected="selected"' : '' ?>> - MySQL + MySQL / MariaDB </option> <?php }?> <?php if (extension_loaded('pdo_pgsql')) {?> |
