8 lines
274 B
Python
8 lines
274 B
Python
from django.db import models
|
|
|
|
class Language(models.Model):
|
|
code = models.SlugField(db_index = True)
|
|
name = models.CharField(max_length = 100)
|
|
nplurals = models.SmallIntegerField(default = 0)
|
|
pluralequation = models.CharField(max_length = 255, blank = True)
|