Skip to content

Instantly share code, notes, and snippets.

@awkannan
Created February 1, 2019 18:35
Show Gist options
  • Save awkannan/ece6e25859378e9db3e193e67785097a to your computer and use it in GitHub Desktop.
Save awkannan/ece6e25859378e9db3e193e67785097a to your computer and use it in GitHub Desktop.
TheHatMan - HatLog model
class HatLog(Model):
user_id = CharField(null = False)
start_time = DateTimeField(null = False)
end_time = DateTimeField(null = True)
class Meta:
database = db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment