Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -402,4 +402,4 @@ class Migration(migrations.Migration):
'unique_together': {('curr_id', 'student_id')},
},
),
]
]
2 changes: 1 addition & 1 deletion FusionIIIT/applications/department/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# Create your models here.
from applications.globals.models import ExtraInfo

class SpecialRequest(models.Model):
request_maker = models.ForeignKey(ExtraInfo, on_delete=models.CASCADE)
request_date = models.DateTimeField(default=date.today)
Expand Down
6 changes: 3 additions & 3 deletions FusionIIIT/applications/filetracking/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ class File(models.Model):
class Meta:
db_table = 'File'

#def __str__(self):
#return str(self.ref_id)
# def __str__(self):
# return str(self.ref_id)


class Tracking(models.Model):
Expand All @@ -48,4 +48,4 @@ class Tracking(models.Model):
tracking_extra_JSON = models.JSONField(null=True)

class Meta:
db_table = 'Tracking'
db_table = 'Tracking'
2 changes: 0 additions & 2 deletions FusionIIIT/applications/globals/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ class Constants:
DESIGNATIONS = (
('academic', 'Academic Designation'),
('administrative', 'Administrative Designation'),


)
USER_STATUS = {
("NEW", "NEW"),
Expand Down
1 change: 1 addition & 0 deletions FusionIIIT/applications/health_center/api/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ class Meta:




class AnnouncementSerializer(serializers.ModelSerializer):

class Meta:
Expand Down
2 changes: 0 additions & 2 deletions FusionIIIT/applications/health_center/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ class Pathologist_Schedule(models.Model):
room = models.IntegerField()
date = models.DateField(auto_now=True)




class Counter(models.Model):
count=models.IntegerField(default=0)
Expand Down
Loading