Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. class MyModelWithAVeryLongName(Model):
  2.     pass
  3.  
  4. MM = MyModelWithAVeryLongName
  5.  
  6. # or
  7. class MM(Model):
  8.     class Meta:
  9.         table_name = 'my_model_with_a_very_long_name'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement