padmaAPI/translate/models.py

9 lines
198 B
Python
Raw Normal View History

2010-07-17 15:18:44 +00:00
from django.db import models
class Srt(models.Model):
language = models.CharField(max_length=5)
txt = models.TextField()
padmaId = models.CharField(max_length=20)
# Create your models here.