I have a Django model as:
Class DataFile(models.Model):
file = models.FileField(upload_to=get_file_upload_path)
But, file
is a reserved keyword in MySQL.
I know that we can use any reserved keyword as column name by wrapping it in ``.
My senior advised me not to use reserved keywords and use something which is nearly meaningful other than just file.
What are the cons?