Skip to content

Instantly share code, notes, and snippets.

@esirK
Last active October 22, 2018 09:36
Show Gist options
  • Save esirK/6be140aa6af2fbbcd85258c48d770385 to your computer and use it in GitHub Desktop.
Save esirK/6be140aa6af2fbbcd85258c48d770385 to your computer and use it in GitHub Desktop.
class Article(models.Model):
title = models.CharField(max_length=120)
description = models.TextField()
body = models.TextField()
author = models.ForeignKey('Author', related_name='articles')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment