From 20960fcf0a94c23f69e7072e5ba0fdd7190c4415 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Fri, 18 Mar 2022 16:10:25 +0100 Subject: [PATCH] docs: always run django migration on upgrade (#1687) --- docs/admin-manual/setup/upgrade.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/admin-manual/setup/upgrade.md b/docs/admin-manual/setup/upgrade.md index 6d3d6baf3..cc54a7898 100644 --- a/docs/admin-manual/setup/upgrade.md +++ b/docs/admin-manual/setup/upgrade.md @@ -23,6 +23,14 @@ Follow [the install guide](./install.md#download) to download and install the ne Be sure to carefully read **all** the [releases notes](../../../releases), from your current version to the targeted version, to apply upgrade or breaking changes instructions to your installation. +## Apply migrations + +Run the following command to apply the database migrations: + +```bash +libretime-api migrate +``` + ## Restart the services Restart all the services to make sure all the changes are applied.