Modify ↓
Ticket #146 (closed enhancement: wontfix)
load fixtures even when there is 'nothing to migrate'
| Reported by: | stevecrozz@… | Owned by: | andrew |
|---|---|---|---|
| Priority: | major | Milestone: | 0.7 |
| Component: | commands | Version: | 0.5 |
| Keywords: | Cc: |
Description
syncdb loads fixtures every time, even when it has nothing else to do. migrate should act the same way.
Attachments
Change History
comment:3 Changed 4 years ago by andrew
- Milestone changed from 0.6 to 0.7
Bumping to 0.7 so we can get this right in the new migration engine.
comment:4 Changed 3 years ago by andrew
- Status changed from assigned to closed
- Resolution set to wontfix
I'm not convinced this is actually what people will be expecting of migrate; initial data loading can be destructive, and my deployment scripts run migrate after every deployment.
I'm going to mark this as WONTFIX for now, since if you rely on initial_data being loaded a lot, you should put a call to loaddata into your scripts; I'm trying to discourage the use of initial_data with South.
Note: See
TracTickets for help on using
tickets.

Agreed; the goal is to behave as much like Django as possible.