Skip to content

Instantly share code, notes, and snippets.

@alxpck
Created July 25, 2015 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alxpck/917f92c9c3c1cdd14f5f to your computer and use it in GitHub Desktop.
Save alxpck/917f92c9c3c1cdd14f5f to your computer and use it in GitHub Desktop.
from django.db import models
# Create your models here.
class Course(models.Model):
created_at = models.DateTimeField(auto_now_add=True)
title = models.CharField(max_length=255)
description = models.TextField()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment