photoprism/internal/entity/schema
Michael Mayer c0697b6fa3 MariaDB: Update internal/entity/schema/README.md #2795
Signed-off-by: Michael Mayer <michael@photoprism.app>
2024-05-10 14:33:49 +02:00
..
mariadb.mmd MariaDB: Update internal/entity/schema/mariadb.mmd #2795 2024-05-10 13:01:54 +02:00
mariadb.sql MariaDB: Update schema SQL dump and Mermaid diagram #2795 2024-05-10 12:58:05 +02:00
README.md MariaDB: Update internal/entity/schema/README.md #2795 2024-05-10 14:33:49 +02:00

Database Schema

This schema description is for illustrative purposes only, e.g. to generate visual relationship diagrams. It should not be used to update or replace an existing production database.

Entity-Relationship Diagram

docs.photoprism.app/developer-guide/database/schema/

Mermaid Markup

With Mermaid.js you can generate visual diagrams from this markup file:

mariadb.mmd

MariaDB SQL Dump

An SQL schema dump can be created using the command shown below, for example:

mariadb.sql

If you need an updated dump, you can run this command in your development environment:

mariadb-dump --no-data --skip-add-locks --skip-comments \
 --skip-opt --skip-set-charset photoprism > mariadb.sql

Please note that the dump we provide is only updated at irregular intervals and should therefore not be used to update or replace an existing production database.

Schema Migrations

docs.photoprism.app/developer-guide/database/migrations/

github.com/photoprism/photoprism/tree/develop/internal/migrate