mirror of
https://github.com/KevinMidboe/Node-Com-Handler.git
synced 2025-10-29 17:50:27 +00:00
10 lines
326 B
Python
10 lines
326 B
Python
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) |