Opened 12 years ago

Closed 12 years ago

Last modified 11 years ago

#18099 closed Bug (fixed)

Typo in initial data docs

Reported by: Bradley Ayers <bradley.ayers@…> Owned by: nobody
Component: Documentation Version: 1.4
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

At the bottom of https://docs.djangoproject.com/en/1.4/howto/initial-data/

For example, if your app contains the files sql/person.sql and sql/person.sqlite3.sql and you're installing the app on SQLite, Django will execute the contents of sql/person.sqlite.sql first, then sql/person.sql.

First it refers to person.sqlite3.sql, then person.sqlite.sql.

Pull request: https://github.com/django/django/pull/135

Change History (2)

comment:1 by Alex Gaynor, 12 years ago

Resolution: fixed
Status: newclosed

In [17895]:

Fixed #18099 -- corrected a typo in the initial data docs. Thanks to Bradley Ayers for the patch.

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

In 8ab2aceb6591e5e7c2f50e85a90ec85b42c5c16f:

[1.4.X] Fixed #18099 -- corrected a typo in the initial data docs. Thanks to Bradley Ayers for the patch.

Backport of f5a9e5e9 from master

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