Skip to content

Instantly share code, notes, and snippets.

View mchesler613's full-sized avatar
💐
Thank You G-d for ALL Your daily miracles at all times.

Merilyn Chesler mchesler613

💐
Thank You G-d for ALL Your daily miracles at all times.
View GitHub Profile
@mchesler613
mchesler613 / models.py
Last active February 28, 2021 03:43
Django Models
# Person has one-to-one relationship with Email and Bio
class Person(models.Model):
STATUS = [
('AWAY', 'I am away'),
('BUSY', 'I am busy'),
('MEETING', 'I am in a meeting'),
('IDLE', 'I am available')
]
name = models.CharField(max_length=20)