Added indexes for Transaction, Alias and Profile
This commit is contained in:
parent
77551162d5
commit
c8f5451ea4
3 changed files with 10 additions and 0 deletions
|
|
@ -46,6 +46,7 @@ class Profile(models.Model):
|
|||
class Meta:
|
||||
verbose_name = _('user profile')
|
||||
verbose_name_plural = _('user profile')
|
||||
indexes = [ models.Index(fields=['user']) ]
|
||||
|
||||
def get_absolute_url(self):
|
||||
return reverse('user_detail', args=(self.pk,))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue