14 lines
273 B
Python
14 lines
273 B
Python
|
from django.db import models
|
||
|
|
||
|
# Create your models here.
|
||
|
|
||
|
|
||
|
class BackEnd(models.Model):
|
||
|
title = models.CharField(max_length=200)
|
||
|
description = models.TextField()
|
||
|
|
||
|
def __str__(self):
|
||
|
"""A string representation of the model."""
|
||
|
return self.title
|
||
|
|