Re: Django 1.5 app had subclasses without tables without proxy and now 1.6 won't sync with proxy

2022-04-05 Thread John Abraham
Thanks for your responses. To clarify, I've used proxy=True on the subclasses (not the bass class) because they are polymorphic in their behaviour in some Python methods, but not in their persistent data. I don't understand why South didn't create DB tables for them without the proxy=True flag

HELP

2022-04-05 Thread Dushime Mudahera Richard
Greetings i really need a help i am setting up a project that project have .env where i have to put all my database credentials and all settings that i may wish to customize i followed up all the steps but at the end i am facing a challenge when i run the tests from dotenv import load_dotenv,

Re: Django 1.5 app had subclasses without tables without proxy and now 1.6 won't sync with proxy

2022-04-05 Thread Thomas Lockhart
(Used 1.5 but don’t remember a thing :) ) Yes, what Steven says. If you try moving through each version then you will end up understanding a *lot* more about the application, but it sounds painful. Your specific question seems to indicate that you would want your subclasses to actually share ta

Re: django html error

2022-04-05 Thread 'Steven Mapes' via Django users
If you check the output of runserver can you see a HTTP200 response? If so then the best starting place is to look into your projects base .urls.py and match up the URL you are requesting to the view being used. Once you have that what is happening next will depend on whether you are using func

Re: Django 1.5 app had subclasses without tables without proxy and now 1.6 won't sync with proxy

2022-04-05 Thread 'Steven Mapes' via Django users
Migrations came in in 1.7 the docs for 1.8 show the following *Prior to version 1.7, Django only supported adding new models to the database; it was not possible to alter or remove existing models via the syncdb command (the predecessor to migrate