Migrate Open WebUI from SQLite to PostgreSQL
Project description
Migrate tool for Open WebUI - SQLite to Postgres
Migrate from using SQLite (default) in Open WebUI to use Postgres.
Inspiration from: https://github.com/taylorwilsdon/open-webui-postgres-migration, one of the big differences is that this migration require no input, configurable with environment variables, you just run the script, no input needed.
This so you can automate the whole process.
Version supported
As we are migrating tables in a specific order, the known Open WebUI version that this tools support is at this moment 0.8.12.
Install
You can copy the script to you environment and run it, or you could install it:
pip install open-webui-sqlite-migration
Configuration
Before anything else, backup you SQLite database and keep it in a safe place.
Needed environment variables:
SQLITE_DB_PATH- exact path to your open webui db, like:/app/backend/data/webui.db.MIGRATE_DATABASE_URL- normally the same you should use forDATABASE_URL, likepostgresql://user:pass@postgres:5432/openwebui
Also you need to start Open WebUI with DATABASE_URL, so needed tables are created. After that,
you remove that variable so you go back to use SQLite. When using SQLite, you run the migration script,
then you stop Open WebUI, and then again set DATABASE_URL. If everything now runs smoothly, you can remove the
SQLite database. Keep a backup of the database until you are really sure that all things are working as they
should.
While you always should have a backup of your SQLite database before starting, the migration itself is done on a copy of the SQLite database, to avoid locking etc.
/tmp needs to be writeable during the migration.
Migration
- Make sure you backup your SQLite database, before doing anything.
- Set
SQLITE_DB_PATHandMIGRATE_DATABASE_URL - Start Open WebUI with SQLite if it's not running (info logs should say:
Context impl SQLiteImpl). - Stop Open WebUI.
- Start Open WebUI with
DATABASE_URLset. Needed tables should be created. - Stop Open WebUI.
- Remove ENV variable
DATABASE_URL, start Open WebUI. - Run
open-webui-migrate-sqlite --dry-run - Check output, if what is you expected, go to next step.
- Have you really done a backup of your SQLite database?
- Run
open-webui-migrate-sqlite - If all succeeds, restart Open WebUI with
DATABASE_URLset. - You should now be running Open WebUI with Postgres (if you have info logs from Open WebUI, you should see
Context impl PostgresqlImpl).
Usage
# Run migration
open-webui-migrate-sqlite
# Dry run (preview without writing)
open-webui-migrate-sqlite --dry-run
# Show row counts in SQLite (before migration)
open-webui-migrate-sqlite --sqlite-counts
# Show row counts in PostgreSQL (after migration)
open-webui-migrate-sqlite --postgres-counts
# Validate migration (compare SQLite to PostgreSQL counts)
open-webui-migrate-sqlite --validate
Development
Poetry is used.
poetry install
Release:
Make sure to change version, then:
poetry build
poetry publish
Tests
export SQLITE_DB_PATH="/web.db"
export MIGRATE_DATABASE_URL=postgresql://user:pass@postgres:5432/openwebui
poetry run pytest
Coverage
poetry run pytest --cov
Linting
poetry run pylint $(git ls-files '*.py')
SBOM
Included in releases.
License
MIT
Copyright (c) Digitalist Open Cloud.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file open_webui_sqlite_migration-0.1.15.tar.gz.
File metadata
- Download URL: open_webui_sqlite_migration-0.1.15.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.2 CPython/3.13.4 Darwin/23.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24e18c088e65de007796392b5c527592042c33bbc16329af9897f6c7c78eb250
|
|
| MD5 |
3958517605b8843fcf54fc565366c3b6
|
|
| BLAKE2b-256 |
2f25665d4cb996c2d70f1d8ab53ff46f758724e62bf5b53992f2b2aae3505aa9
|
File details
Details for the file open_webui_sqlite_migration-0.1.15-py3-none-any.whl.
File metadata
- Download URL: open_webui_sqlite_migration-0.1.15-py3-none-any.whl
- Upload date:
- Size: 8.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.2 CPython/3.13.4 Darwin/23.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab5cf78c2f07de44b8d0d2a53f6e6b48a75ba2dbfec07bc9c419ac2803171714
|
|
| MD5 |
792ce487d8769cd4adbd8a1777afbd73
|
|
| BLAKE2b-256 |
e17291b7b1095ad4b23adce7769bc91cc4fa41b9ee878ade0dab8b2a226b6c31
|