source:
branches/firstplay/testMim/firstplay/models.py
@
33
Last change on this file since 33 was 6, checked in by , 16 years ago | |
---|---|
File size: 413 bytes |
Line | |
---|---|
1 | from django.db import models |
2 | |
3 | class User(models.Model): |
4 | bIsActive = models.BooleanField(default=True) |
5 | sFirstName = models.CharField('FirstName', max_length=200) |
6 | sLastName = models.CharField('LastName', max_length=200) |
7 | |
8 | class TaskArea(models.Model): |
9 | sTaskHeading = models.CharField('TaskHeading', max_length=200) |
10 | |
11 | class Task(models.Model): |
12 | sTask = models.CharField('Task', max_length=200) |
13 |
Note: See TracBrowser
for help on using the repository browser.