from django.db import models

# Create your models here.
class FAQ(models.Model):
    question    = models.CharField(max_length=200)
    answer      = models.TextField()
    order       = models.IntegerField()

    def __unicode__(self):
        return self.question

    class Meta:
        ordering = ('order',)
