Skip to content
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

Redundant Fields in HostelSuperintendent #278

Open
khizirsiddiqui opened this issue Jul 23, 2020 · 1 comment
Open

Redundant Fields in HostelSuperintendent #278

khizirsiddiqui opened this issue Jul 23, 2020 · 1 comment

Comments

@khizirsiddiqui
Copy link
Collaborator

class HostelSuperintendent has two redundant pairs for phone numbers:

phone_off = models.CharField(max_length=15, null=True, blank=True)
phone_res = models.CharField(max_length=15, null=True, blank=True)

and

office_ph = models.CharField(max_length = 12, null = True, blank=True)
residence_ph = models.CharField(max_length = 12, null = True, blank=True)

@soumikdhua
Copy link
Contributor

soumikdhua commented Jul 23, 2020

class HostelSuperintendent also has chamber field repeated:

chamber = models.CharField(max_length = 10, null=True, blank=True)

and

chamber = models.CharField(max_length=15, null=True, blank=True)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants