Skip to content

Instantly share code, notes, and snippets.

@mansha99
Created July 4, 2023 17:17
Show Gist options
  • Save mansha99/204ec5dccad71fb47d92881c40945e92 to your computer and use it in GitHub Desktop.
Save mansha99/204ec5dccad71fb47d92881c40945e92 to your computer and use it in GitHub Desktop.
notice_app/notices/models.py
class Notice(models.Model):
title = models.CharField(max_length=80,unique=True)
description = models.CharField(max_length=255,unique=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment