ITRadio/server/proj/rubricks/models.py

7 lines
140 B
Python

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