From 8dcd01046ef0307dbefeac1e1036cf1d5421d109 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 6 Apr 2016 12:17:09 -0400 Subject: [PATCH] Removed extra blank lines in last commit. --- docs/howto/writing-migrations.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/howto/writing-migrations.txt b/docs/howto/writing-migrations.txt index 02c39dff404..c205a1add5f 100644 --- a/docs/howto/writing-migrations.txt +++ b/docs/howto/writing-migrations.txt @@ -318,8 +318,6 @@ Here's a sample migration: if global_apps.is_installed('old_app'): dependencies.append(('old_app', '0001_initial')) - - Also consider what you want to happen when the migration is unapplied. You could either do nothing (as in the example above) or remove some or all of the data from the new application. Adjust the second argument of the