apply languages

This commit is contained in:
Egor Matveev
2022-02-12 00:18:13 +03:00
parent 8cb402d4af
commit a3eec7c864
9 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
from django.db import models
class LanguageApply(models.Model):
language_id = models.IntegerField()
applied = models.BooleanField(default=False)