Skip to content

Commit 7f09997

Browse files
committed
Documentation - Require SQLite 3.35
That way, migrations that try to drop columns won't fail anymore (regardless if the user intended to use sqlite or not)
1 parent a6be786 commit 7f09997

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docs/installation/installation_guide-debian.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,14 @@ It is recommended to install Part-DB on a 64-bit system, as the 32-bit version o
2828
For the installation of Part-DB, we need some prerequisites. They can be installed by running the following command:
2929

3030
```bash
31-
sudo apt install git curl zip ca-certificates software-properties-common apt-transport-https lsb-release nano wget
31+
sudo apt update && apt upgrade
32+
sudo apt install git curl zip ca-certificates software-properties-common \
33+
apt-transport-https lsb-release nano wget sqlite3
3234
```
3335

36+
Please run `sqlite3 --version` to assert that the SQLite version is 3.35 or higher.
37+
Otherwise some database migrations will not succeed.
38+
3439
### Install PHP and apache2
3540

3641
Part-DB is written in [PHP](https://php.net) and therefore needs a PHP interpreter to run. Part-DB needs PHP 8.2 or

0 commit comments

Comments
 (0)