I am running Symfony 1.3.6 on Ubuntu Lucid.
My db connections for Symfony are made with a user with reduced priveleges (no need for CREATE or DROP for example) - for security reasons.
I want to be able to run the propel task propel:sql-insert as root, so that I can create/drop tables at will. The brain dead way to do this would be to modify config/database.yml and use a root name and pwd whenever I need to run this task.
A smarter way would be if I could pass a user to the import-sql task. Anyone knows how to do this?