This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Employee-Management-Portal/work/models.py
Alicja Cięciwa 68337fcf66 code cleanup
2020-11-13 17:43:06 +01:00

10 lines
227 B
Python

from django.db import models
import datetime
class HoursInput(models.Model):
date = models.DateField(default=datetime.date.today)
hours_number = models.IntegerField()
workplace = models.CharField(max_length=100)