Project

General

Profile

Statistics
| Branch: | Revision:

root / crm / robocrm / models.py @ 988e217a

History | View | Annotate | Download (209 Bytes)

1
from django.db import models
2

    
3
# User Model
4
class User(models.model):
5
  andrewID = models.CharField(max_length=8)
6
  first_name = models.CharField(max_length=30)
7
  last_name = models.CharField(max_length=30)
8