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

Configurations for Fusion-Client (Draft) #1627

Merged
merged 14 commits into from
Oct 7, 2024
Prev Previous commit
Next Next commit
further migrations
ramG-reddy committed Aug 13, 2024
commit c1b00ff01391033621307684623483fe78d57467
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1.5 on 2024-08-13 17:53

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('globals', '0002_moduleaccess'),
]

operations = [
migrations.AlterField(
model_name='extrainfo',
name='user_status',
field=models.CharField(choices=[('PRESENT', 'PRESENT'), ('NEW', 'NEW')], default='PRESENT', max_length=50),
),
]