diff --git a/AUTHORS b/AUTHORS index c7bb9249c4..026a5204ed 100644 --- a/AUTHORS +++ b/AUTHORS @@ -670,6 +670,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 8bb292bfc4..e2ab65db68 100644 --- a/docs/topics/migrations.txt +++ b/docs/topics/migrations.txt @@ -456,7 +456,6 @@ Then, open up the file; it should look something like this:: from django.db import migrations, models class Migration(migrations.Migration): - initial = True dependencies = [ ('yourappname', '0001_initial'), @@ -494,7 +493,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'),