open-webui/backend/apps/web/internal/migrations
Timothy J. Baek 48ed701960 fix
2024-04-27 19:44:36 -07:00
..
001_initial_schema.py fix 2024-04-27 19:44:36 -07:00
002_add_local_sharing.py feat: migrate db schema for local sharing 2024-04-02 08:58:03 -07:00
003_add_auth_api_key.py refac: api_key field moved to user 2024-04-02 09:23:55 -07:00
004_add_archived.py feat: archive chat 2024-04-20 17:03:39 -05:00
005_add_updated_at.py feat: add support for using postgres for the backend DB 2024-04-27 15:33:20 +01:00
006_migrate_timestamps_and_charfields.py feat: add support for using postgres for the backend DB 2024-04-27 15:33:20 +01:00
007_add_user_last_active_at.py feat: user last active 2024-04-27 19:38:51 -04:00
README.md feat: add ability to run db migrations 2024-04-02 08:58:03 -07:00

Database Migrations

This directory contains all the database migrations for the web app. Migrations are done using the peewee-migrate library.

Migrations are automatically ran at app startup.

Creating a migration

Have you made a change to the schema of an existing model? You will need to create a migration file to ensure that existing databases are updated for backwards compatibility.

  1. Have a database file (webui.db) that has the old schema prior to any of your changes.
  2. Make your changes to the models.
  3. From the backend directory, run the following command:
    pw_migrate create --auto --auto-source apps.web.models --database sqlite:///${SQLITE_DB} --directory apps/web/internal/migrations ${MIGRATION_NAME}
    
    • $SQLITE_DB should be the path to the database file.
    • $MIGRATION_NAME should be a descriptive name for the migration.
  4. The migration file will be created in the apps/web/internal/migrations directory.