HowTo init Django model, before using it?
- by mosg
Hi.
I'm new to python and django.
Apps | Versions:
Python 2.6.2
Django (working with PostgreSQL)
Question: I wrote a simple model:
class OperationType(models.Model):
eid = models.IntegerField(unique=True)
name = models.CharField(max_length=64)
def __unicode__(self):
tpl = 'eid="', str(self.eid), '" name="', self.name, '"'
return ''.join(tpl)
Now I need to initialize it, for example with this data:
0, "None"
1, "Add"
2, "Edit"
3, "Delete"
But I need to initialize this data not with admin web panel, but after class model created in the same code. How to do this?
Thanks for help!