still setup stuff

This commit is contained in:
Benni Bärmann 2020-09-28 11:45:15 +02:00
parent 8cebb0fcd3
commit a25c817728
1 changed files with 2 additions and 2 deletions

View File

@ -2,8 +2,8 @@ from django.db import models
class Project(models.Model):
project_name = models.CharField(max_length=200)
project_start = models.DateTimeField('start date')
name = models.CharField(max_length=200)
start = models.DateTimeField('start date')
def __str__(self):
return self.project_name