10 lines
263 B
Python
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)
|