Opened 10 years ago

Closed 10 years ago

#23513 closed Uncategorized (duplicate)

Fixtures/initial_data Clarification in Release Notes for django 1.7

Reported by: Aryeh Hillman Owned by: nobody
Component: Documentation Version: 1.7
Severity: Normal Keywords: runpython runsql documentation migrations initial_data
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

When migrations are created in Django 1.7, the fixtures are ignored. This is a perfectly fine decision, but many users (such as myself) still need fixture-like functionality. That functionality is provided by RunPython or RunSQL within a migration. While the release notes correctly indicate that modifying/creating a migration can replace initial_data, they could be a little clearer, noting RunPython or RunSQL. For example:

"initial_data fixtures are no longer loaded for apps with migrations; if you want to load initial data for an app, we suggest you do it in a migration."

... could become

"initial_data fixtures are no longer loaded for apps with migrations; if you want to load initial data for an app, we suggest you create a migration for you application and define a RunPython or RunSQL command in the operations section of the migration."

That could be immensely helpful for pointing users in the right direction, especially if they are eager to quickly get django 1.7 up and running... whilst maintaining fixture-like functionality.

Change History (1)

comment:1 by Tim Graham, 10 years ago

Resolution: duplicate
Status: newclosed

Since the text is identical, we can make the update part of #23513.

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