diff --git a/AUTHORS b/AUTHORS index 1c945a58c2..5524ea9ca4 100644 --- a/AUTHORS +++ b/AUTHORS @@ -721,6 +721,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 c767584589..938ba31112 100644 --- a/docs/topics/migrations.txt +++ b/docs/topics/migrations.txt @@ -458,7 +458,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'), @@ -493,7 +492,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'),