11 lines
214 B
Python
11 lines
214 B
Python
from django.db import models
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class Subject(models.Model):
|
|
id = models.CharField(
|
|
_("cin"),
|
|
max_length=8,
|
|
primary_key=True
|
|
)
|