Fix silly ypot in title.
[eatslugs.git] / eatslugs / recipes / models.py
1 from django.db import models
2
3 # Create your models here.
4
5 class Recipe(models.Model):
6     name = models.CharField(max_length=250)
7     ingrediants = models.TextField()
8     description = models.TextField()
9
10 class Drink(models.Model):
11     name = models.CharField(max_length=250)
12     description = models.TextField()
13
14 class Combination(models.Model):
15     recipe = models.ForeignKey('Recipe')
16     drink = models.ForeignKey('Drink')