On Wed, Nov 10, 2010 at 09:23:55AM -0800, octopusgrabbus wrote:
> # Create your models here.
> class ept_inv(models.Model):
> part_num = models.CharField(max_length=20)
> ept_type = models.SmallIntegerField
> inv_id = models.IntegerField
> load_date = models.DateField
Call the model classes. Dont return their references.
class ept_inv(models.Model):
part_num = models.CharField(max_length=20)
ept_type = models.SmallIntegerField()
inv_id = models.IntegerField()
load_date = models.DateField()
- Sandip
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.