Add topic without subject

This commit is contained in:
Th3NiKo 2019-11-24 14:36:55 +01:00
parent 538db4195b
commit 3f49f3bd55

5
Front/model.py Normal file
View File

@ -0,0 +1,5 @@
from django.db import models
class Zagadnienie(models.Model):
nazwa = models.CharField(max_length=30)
przedmiot_id = models.ForeignKey(Przedmiot, on_delete=models.CASCADE)