Make sure you don't push db files (files with .sqlite, .db3, etc. extension).
- Don't forget that the name of the class should be in the singular form.
Good Example:
class Manager:
passBad Example:
class Managers:
pass- If db contains not only one object - name it plural.
Good Example:
self.table_name = "objects"Bad Example:
self.table_name = "object"