source: firstplay/testMim/firstplay/models.py @ 6

Last change on this file since 6 was 6, checked in by tuxta, 15 years ago

Exploring urls

File size: 413 bytes
Line 
1from django.db import models
2
3class 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
8class TaskArea(models.Model):
9    sTaskHeading = models.CharField('TaskHeading', max_length=200)
10   
11class Task(models.Model):
12    sTask = models.CharField('Task', max_length=200)
13
Note: See TracBrowser for help on using the repository browser.