-
Notifications
You must be signed in to change notification settings - Fork 978
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f81871d
commit 93cfeb8
Showing
7 changed files
with
436 additions
and
88 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
FusionIIIT/applications/central_mess/migrations/0010_auto_20240425_0417.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,19 @@ | ||
# Generated by Django 3.1.5 on 2024-04-25 04:17 | ||
|
||
import datetime | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('central_mess', '0009_auto_20240424_0342'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='payments', | ||
name='payment_date', | ||
field=models.DateField(default=datetime.date(2024, 4, 25)), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
FusionIIIT/applications/globals/migrations/0014_auto_20240425_0417.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-25 04:17 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('globals', '0013_auto_20240424_2236'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='extrainfo', | ||
name='user_status', | ||
field=models.CharField(choices=[('NEW', 'NEW'), ('PRESENT', 'PRESENT')], default='PRESENT', max_length=50), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
FusionIIIT/applications/globals/migrations/0015_auto_20240425_0421.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-25 04:21 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('globals', '0014_auto_20240425_0417'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='extrainfo', | ||
name='user_status', | ||
field=models.CharField(choices=[('PRESENT', 'PRESENT'), ('NEW', 'NEW')], default='PRESENT', max_length=50), | ||
), | ||
] |
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.