Skip to content

Instantly share code, notes, and snippets.

@esirK
Created September 7, 2022 03:06
Show Gist options
  • Save esirK/900f41d8066717af7e24d99f1dba25d1 to your computer and use it in GitHub Desktop.
Save esirK/900f41d8066717af7e24d99f1dba25d1 to your computer and use it in GitHub Desktop.
class Tweet(TimestampedModelMixin):
"""
Tweet model
"""
tweet_id = models.BigIntegerField(primary_key=True)
content = models.CharField(max_length=1024, help_text=_("Tweet Content"))
deleted_at = models.DateTimeField(blank=True, null=True, db_index=True,)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment