SpaceyaTech / mastori

Mastori is a community-driven open-source project that aims to provide a simple and efficient blogging platform built for the Dev Community
https://www.spaceyatech.com/
22 stars 54 forks source link

User Model-Joseph #35

Closed JosephThuku closed 1 year ago

JosephThuku commented 1 year ago

I created the account and blog post models. though i used the existing user inbiult django model

hellen-22 commented 1 year ago

It's best practice to start each word with a capital letter when writing python classes..ie class Account, class Blog

hellen-22 commented 1 year ago

Also when creating django models you do not need to include id field because it is automatically given by django and its autoincremented. Not unless you want to use a different approach to save the user id eg using UUID as your unique identifier.

My thought