-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redesign Django models #83
Comments
What seems to be the issue? |
Normalize the database relationships by splitting the User table into separate entities and establishing references in the UserMeetings and SettingModel tables. |
I have created new models such as Gender, City, User, UserProfile, Event, UserMeeting and SettingModel to give simplified outlook to the convoluted Django models class Gender(models.Model):
class City(models.Model):
class User(models.Model):
class UserProfile(models.Model): class Event(models.Model):
class UserMeeting(models.Model):
class SettingModel(models.Model): objects = models.Manager() |
@DavidRomanovizc is there anyone working on this issue ? |
Not yet |
No description provided.
The text was updated successfully, but these errors were encountered: