forked from FusionIIIT/Fusion
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/hmweb-main' into hmweb-test
- Loading branch information
Showing
15 changed files
with
550 additions
and
182 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
FusionIIIT/applications/academic_information/migrations/0002_auto_20240409_2009.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Generated by Django 3.1.5 on 2024-04-09 20:09 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('academic_information', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='student', | ||
name='hall_no', | ||
), | ||
migrations.AddField( | ||
model_name='student', | ||
name='hall_id', | ||
field=models.CharField(blank=True, max_length=10, null=True), | ||
), | ||
] |
22 changes: 22 additions & 0 deletions
22
FusionIIIT/applications/academic_information/migrations/0003_auto_20240409_2014.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Generated by Django 3.1.5 on 2024-04-09 20:14 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('academic_information', '0002_auto_20240409_2009'), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name='student', | ||
name='hall_id', | ||
), | ||
migrations.AddField( | ||
model_name='student', | ||
name='hall_no', | ||
field=models.IntegerField(default=0), | ||
), | ||
] |
14 changes: 14 additions & 0 deletions
14
FusionIIIT/applications/globals/migrations/0021_merge_20240319_2339.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Generated by Django 3.1.5 on 2024-03-19 23:39 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('globals', '0020_auto_20240315_2158'), | ||
('globals', '0018_auto_20240315_2157'), | ||
] | ||
|
||
operations = [ | ||
] |
18 changes: 18 additions & 0 deletions
18
FusionIIIT/applications/globals/migrations/0022_auto_20240409_2009.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 3.1.5 on 2024-04-09 20:09 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('globals', '0021_merge_20240319_2339'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='extrainfo', | ||
name='user_status', | ||
field=models.CharField(choices=[('NEW', 'NEW'), ('PRESENT', 'PRESENT')], default='PRESENT', max_length=50), | ||
), | ||
] |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,5 +29,6 @@ class Meta: | |
'arrival_time', | ||
'departure_date', | ||
'departure_time', | ||
'nationality' | ||
'nationality', | ||
'room_type' | ||
) |
Binary file not shown.
23 changes: 23 additions & 0 deletions
23
FusionIIIT/applications/hostel_management/migrations/0020_auto_20240409_1513.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 3.1.5 on 2024-04-09 15:13 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('hostel_management', '0019_merge_20240315_2153'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='guestroom', | ||
name='room_type', | ||
field=models.CharField(choices=[('single', 'Single'), ('double', 'Double'), ('triple', 'Triple')], default='single', max_length=10), | ||
), | ||
migrations.AddField( | ||
model_name='guestroombooking', | ||
name='room_type', | ||
field=models.CharField(choices=[('single', 'Single'), ('double', 'Double'), ('triple', 'Triple')], default='single', max_length=10), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.