Advertisement
Guest User

Untitled

a guest
Aug 27th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.48 KB | None | 0 0
  1. class Bill(models.Model):
  2.     personal_account = models.ForeignKey(Account, blank=True, null=True)
  3.     apartment = models.ForeignKey(Apartment, blank=True, null=True)
  4.     bill_id = models.UUIDField(primary_key=True, default=uuid4, editable=False)
  5.     type_bill = models.CharField(max_length=10)
  6.     brand_name = models.CharField(max_length=10)
  7.     username = models.CharField(max_length=100)
  8.     password = models.CharField(max_length=50)
  9.     is_shared_bill = models.BooleanField()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement