from django.db import models
class Rubric(models.Model):
name = models.CharField(max_length=255)
description = models.TextField()