Can I add other tables in the database created by django ? It is for my PHP application.
+1
A:
Absolutely. Just catch the signal and do it yourself.
Ignacio Vazquez-Abrams
2010-06-01 08:06:36
+4
A:
If you are asking if you can put tables for your PHP application into your django database schema, then yes. Django will simply ignore any tables it doesn't know about. I can't imagine why you wouldn't just create a new schema for the PHP application.
poswald
2010-06-01 08:09:49
because my PHP application interact with the django db + new tables :)
xRobot
2010-06-01 08:51:01
+1
A:
Perhaps you have a hosting plan which only has a limited number of databases, but if not, then you really should just create a new database for a new application.
Whilst there is no reason you can't do what you planned, do you want to risk putting all your eggs in one basket?
SeerUK
2010-06-01 08:14:52