diff --git a/AUTHORS b/AUTHORS index bf7c21be45..dd7d873b34 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 889c05b284..db510010e2 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'),