From 8d4e2ce498827eb8ccba934369e4301d063c1487 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 15 Sep 2019 22:34:22 +1000 Subject: [PATCH] Update CONTRIBUTING.md Include notes about migration files --- CONTRIBUTING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 027d3641cb..ebb9d4a4fc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,6 +4,10 @@ Contributions to InvenTree are welcomed - please follow the guidelines below. No pushing to master! New featues must be submitted in a separate branch (one branch per feature). +## Include Migration Files + +Any required migration files **must** be included in the commit, or the pull-request will be rejected. If you change the underlying database schema, make sure you run `make migrate` and commit the migration files before submitting the PR. + ## Testing Any new code should be covered by unit tests - a submitted PR may not be accepted if the code coverage is decreased.