Django_portfolio/projects/models.py

10 lines
263 B
Python
Raw Normal View History

2022-01-01 18:21:32 +01:00
from django.db import models
# Create your models here.
class Project(models.Model):
title = models.CharField(max_length=100)
description = models.TextField()
technology = models.CharField(max_length=20)
image = models.CharField(max_length=100)