open-webui/backend/apps/webui/internal/migrations
Timothy J. Baek ccbafca74c feat: save user settings to db 2024-05-26 22:47:42 -07:00
..
001_initial_schema.py refac: folder rename web -> webui 2024-05-26 01:15:48 -07:00
002_add_local_sharing.py refac: folder rename web -> webui 2024-05-26 01:15:48 -07:00
003_add_auth_api_key.py refac: folder rename web -> webui 2024-05-26 01:15:48 -07:00
004_add_archived.py refac: folder rename web -> webui 2024-05-26 01:15:48 -07:00
005_add_updated_at.py refac: folder rename web -> webui 2024-05-26 01:15:48 -07:00
006_migrate_timestamps_and_charfields.py refac: folder rename web -> webui 2024-05-26 01:15:48 -07:00
007_add_user_last_active_at.py refac: folder rename web -> webui 2024-05-26 01:15:48 -07:00
008_add_memory.py refac: folder rename web -> webui 2024-05-26 01:15:48 -07:00
009_add_models.py refac: folder rename web -> webui 2024-05-26 01:15:48 -07:00
010_migrate_modelfiles_to_models.py refac: folder rename web -> webui 2024-05-26 01:15:48 -07:00
011_add_user_settings.py feat: save user settings to db 2024-05-26 22:47:42 -07:00
README.md refac: folder rename web -> webui 2024-05-26 01:15:48 -07:00

README.md

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.webui.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.