Files
talk/docs/source/06-01-migrating-4-1.md
T
Wyatt Johnson 4c06d5659d initial rewrite
2018-02-16 13:31:37 -07:00

838 B

title, permalink
title permalink
Migrating to v4.1.0 /migration/4.1/

Database Migrations

We have unified the database verifications that were introduced in 3.x.x into the migration system. This unification unfortunately required a database migration bump.

Source

When running via source, you can run the following to start the migration process:

./bin/cli migration run

This will prompt you to perform a database backup before starting the migration process. Data loss is entirely possible otherwise.

Docker Compose

If you are running Talk with docker-compose, you can use the following command to perform the migration:

docker-compose run --rm talk cli migration run

This will prompt you to perform a database backup before starting the migration process. Data loss is entirely possible otherwise.