summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Rivera <github@rivera.za.net>2017-03-25 15:59:17 -0400
committerTim Graham <timograham@gmail.com>2017-03-25 16:00:31 -0400
commit14d53d78bebf944260a37da5542817687f02c301 (patch)
tree74d0a5b8a0993159b4054cc5c2fbbab6e6aca643
parent76508a5119f5e39a66d177699b0af57e1a57fa40 (diff)
downloaddjango-14d53d78bebf944260a37da5542817687f02c301.tar.gz
[1.9.x] Removed unexpected initial attribute in data migration examples.
Inadvertently added in db97a8849519a3933bf4abd2184efd68ebc21965. Backport of 899c42cc8e1820948f4091f815ce7890057c4a81 from master
-rw-r--r--AUTHORS1
-rw-r--r--docs/topics/migrations.txt2
2 files changed, 1 insertions, 2 deletions
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 <cmorgh@gmail.com>
Stefane Fermgier <sf@fermigier.com>
+ Stefano Rivera <stefano@rivera.za.net>
Stéphane Raimbault <stephane.raimbault@gmail.com>
Stephan Jaekel <steph@rdev.info>
Stephen Burrows <stephen.r.burrows@gmail.com>
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'),