Initial commit
This commit is contained in:
9
projects/models.py
Normal file
9
projects/models.py
Normal file
@@ -0,0 +1,9 @@
|
||||
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)
|
||||
Reference in New Issue
Block a user