1
0
Files
noniko/app/models.py
2017-12-31 03:40:56 +03:00

10 lines
210 B
Python

from django.db import models
# Create your models here.
class Setting(models.Model):
name = models.CharField(max_length=100)
language = models.CharField(max_length=5)
string = models.TextField()