Initial Commit
This commit is contained in:
9
app/models.py
Normal file
9
app/models.py
Normal file
@@ -0,0 +1,9 @@
|
||||
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()
|
||||
Reference in New Issue
Block a user