Re: [mezzanine-users] Odd test database behaviour

2015-01-06 Thread Avery Laird
Thanks for the tip, adding the dependency fixed the page issue -- but now I'm running into trouble with an extra model field that I injected into the BlogPost model. This time, the column isn't being generated: django.db.utils.ProgrammingError: column blog_blogpost.use_dark_background does

Re: [mezzanine-users] Odd test database behaviour

2015-01-06 Thread Stephen McDonald
Wild guess - you can edit south migrations to define which other migrations they depend on. You might need to do that in your own migrations. On Wed, Jan 7, 2015 at 9:11 AM, Avery Laird laird.av...@gmail.com wrote: Hello, I ran into an issue while trying to create a test database:

[mezzanine-users] Odd test database behaviour

2015-01-06 Thread Avery Laird
Hello, I ran into an issue while trying to create a test database: django.db.utils.ProgrammingError: relation pages_page does not exist I have an theme app (called theme) that uses the mezzanine page model, so I assume it must have something to do with that; sure enough, the top of the

Re: [mezzanine-users] Odd test database behaviour

2015-01-06 Thread Avery Laird
Solved my own issue, just took some fiddling with the migrations. Seems to work now, thanks again for your help On Tuesday, 6 January 2015 15:12:19 UTC-8, Avery Laird wrote: Thanks for the tip, adding the dependency fixed the page issue -- but now I'm running into trouble with an extra model