Skip to content

Instantly share code, notes, and snippets.

@nerdfiles
Last active August 29, 2015 14:19
Show Gist options
  • Select an option

  • Save nerdfiles/fae1a9e4dcf437365064 to your computer and use it in GitHub Desktop.

Select an option

Save nerdfiles/fae1a9e4dcf437365064 to your computer and use it in GitHub Desktop.
7 class MiniChargeImage(BaseImage):
8
9 def __init__(self, *args, **kwargs):
10 super(MiniChargeImage, self).__init__(*args, **kwargs)
11 self.user.related_name = 'mci_user'
12 self.album.related_name = 'mci_album'
13
14 class Meta(BaseImage.Meta):
15 abstract = False
16 app_label = 'mini_charge'
17 db_table = 'mini_charge_image'
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment