From 4b00657f2437a9e3adb8d0d1fb74711a8ad50ead Mon Sep 17 00:00:00 2001 From: Stefano Rivera Date: Sat, 25 Mar 2017 15:59:17 -0400 Subject: [PATCH] [1.11.x] Removed unexpected initial attribute in data migration examples. Inadvertently added in db97a8849519a3933bf4abd2184efd68ebc21965. Backport of 899c42cc8e1820948f4091f815ce7890057c4a81 from master --- AUTHORS | 1 + docs/topics/migrations.txt | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index bf7c21be453..dd7d873b349 100644 --- a/AUTHORS +++ b/AUTHORS @@ -718,6 +718,7 @@ answer newbie questions, and generally made Django that much better: Stanislaus Madueke starrynight Stefane Fermgier + Stefano Rivera Stéphane Raimbault Stephan Jaekel Stephen Burrows diff --git a/docs/topics/migrations.txt b/docs/topics/migrations.txt index 889c05b2848..db510010e2f 100644 --- a/docs/topics/migrations.txt +++ b/docs/topics/migrations.txt @@ -466,7 +466,6 @@ Then, open up the file; it should look something like this:: from django.db import migrations class Migration(migrations.Migration): - initial = True dependencies = [ ('yourappname', '0001_initial'), @@ -504,7 +503,6 @@ need to do is use the historical model and iterate over the rows:: person.save() class Migration(migrations.Migration): - initial = True dependencies = [ ('yourappname', '0001_initial'),