Folder that holds database for future plans of all contentes of Plex

Library and system info.
This commit is contained in:
2016-12-08 11:47:48 +01:00
parent 94041dfc5b
commit 41000e69b9
39 changed files with 352 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from django.db import models
# Create your models here.
class Address(models.Model):
ip_address = models.CharField(max_length=50)
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)