8 lines
170 B
Python
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 |