Well the issue is probably that your database structure hasn't been
created yet.
instead of running:
symfony propel-load-data frontend
which only loads the fixtures, you need to run:
symfony propel-build-all-load backend
Which will first create the database structure, then import the
necessary fixtures.
- Piers