2023-09-24 17:16:25 -04:00

8 lines
170 B
Python

from django.db import models
# Create your models here.
class Employee(models.Model):
first_name = models.CharField( max_length="32")
class Team(models.Model):
pass