Opened 10 years ago

Closed 10 years ago

Last modified 10 years ago

#23486 closed Cleanup/optimization (fixed)

makemigrations command result

Reported by: nmarler Owned by: nobody
Component: Documentation Version: 1.7
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

https://docs.djangoproject.com/en/1.7/intro/tutorial01/

Section "Activating models"

Running...

$ python manage.py makemigrations polls

Returns (note the last line is not shown in the tutorial)...

Migrations for 'polls':
  0001_initial.py:
    - Create model Choice
    - Create model Question
    - Add field question to choice

Change History (3)

comment:1 by Baptiste Mispelon, 10 years ago

Easy pickings: set
Triage Stage: UnreviewedAccepted

Hi,

Indeed, that line seems to be missing from the documentation.

Good catch, thanks.

comment:2 by Tim Graham <timograham@…>, 10 years ago

Resolution: fixed
Status: newclosed

In 0d1561d19739e83cf20150585c9e26894b428bad:

Fixed #23486 -- Corrected makemigrations output in tutorial 1.

Thanks nmarler for the report.

comment:3 by Tim Graham <timograham@…>, 10 years ago

In 68ab3b1ac1baa1509c8c31c124620849ad19c527:

[1.7.x] Fixed #23486 -- Corrected makemigrations output in tutorial 1.

Thanks nmarler for the report.

Backport of 0d1561d197 from master

Note: See TracTickets for help on using tickets.
Back to Top