1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-06-21 18:08:21 +02:00

Added indexes for Transaction, Alias and Profile

This commit is contained in:
Benjamin Graillot
2020-03-11 13:46:47 +01:00
parent 77551162d5
commit c8f5451ea4
3 changed files with 10 additions and 0 deletions

View File

@ -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,))