to clarify for those as slow as I am... the "models' Python model names" refers to the plural names of your modul class names.
rewriting the example to (hopefully) make this more clear:
class Poll(meta.Model):
...
class Choice(meta.Model):
...
will look for the following files:
apps/
polls/
sql/
polls.sql
choices.sql

