From 822ca101acb45819a4edeb0a324d26cc04023c99 Mon Sep 17 00:00:00 2001 From: Hugo LEVY-FALK Date: Wed, 25 Jul 2018 22:42:26 +0200 Subject: [PATCH] =?UTF-8?q?CHANGELOG=20avec=20les=20commandes=20=C3=A0=20l?= =?UTF-8?q?ancer=20pour=20postgre.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ec2da1a..fd4e0177 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -136,3 +136,17 @@ Fix several issues with email accounts, you need to collect the static files. ```bash ./manage.py collectstatic ``` + +## MR 203 Add custom invoices + +The custom invoices are now stored in database. You need to migrate your database : + +```bash +python3 manage.py migrate +``` + +On some database engines (postgreSQL) you also need to update the id sequences: + +```bash +python3 manage.py sqlsequencereset cotisations | python3 manage.py dbshell +```