pleroma/docs/installation/migrating_from_akkoma.md
marcin mikołajczak 8213d35792 update akkoma migration docs
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-09-07 19:33:52 +02:00

17 lines
No EOL
608 B
Markdown

# Migrating from Akkoma
## Database migration
> Note: You will lose data related about Akkoma-specific features, including: MastoFE settings, user frontend profiles, status auto-expiration config and DM restrictions. Consider taking a backup.
To rollback Akkoma-specific migrations:
- OTP: `./bin/pleroma_ctl rollback --migrations-path priv/repo/optional_migrations/akkoma_rollbacks`
- From Source: `mix ecto.rollback --migrations-path priv/repo/optional_migrations/akkoma_rollbacks`
Then, just
- OTP: `./bin/pleroma_ctl migrate`
- From Source: `mix ecto.migrate`
to apply Pleroma database migrations.