9 lines
198 B
Python
9 lines
198 B
Python
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.
|