Django_portfolio/projects/models.py
2022-01-01 18:21:32 +01:00

10 lines
263 B
Python

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)