9 lines
182 B
Python
9 lines
182 B
Python
from __future__ import absolute_import
|
|
|
|
from django.db import models
|
|
|
|
|
|
class IndexManager(models.Manager):
|
|
def get_by_natural_key(self, name):
|
|
return self.get(name=name)
|