mirror of
https://github.com/DerTyp7/tealcode-django-python.git
synced 2025-10-30 12:57:07 +01:00
output field
This commit is contained in:
@@ -14,6 +14,7 @@ class Category(models.Model):
|
||||
class Topic(models.Model):
|
||||
title = models.CharField(max_length=200)
|
||||
code_text = models.TextField()
|
||||
output = models.TextField(blank=True)
|
||||
date_created = models.DateTimeField(default=timezone.now)
|
||||
category = models.ForeignKey(Category, on_delete=models.CASCADE)
|
||||
version = models.CharField(max_length=100, blank=True)
|
||||
|
||||
Reference in New Issue
Block a user