Is it fine not to define table stucture in models.py...I mean we are using
cursor.execute('some query')
so its okay not to make something like this :
def tblNew(models.Model)
col1 = models.CharField(max_length=2)
Thanks for guidance, Im a newbie in django.
models.py. Also, you'd better have really solid argument for not using built-in ORM features (e.g. "we're going to use SQLAlchemy" or "ORMs sucks" :))