55 lines
1.5 KiB
Python
55 lines
1.5 KiB
Python
# Generated by Django 5.2.7 on 2026-02-04 05:19
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('core', '0009_platformsettings_remove_student_is_mobile_verified_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='PlatformProfile',
|
|
fields=[
|
|
],
|
|
options={
|
|
'verbose_name': 'Platform Profile',
|
|
'verbose_name_plural': 'Platform Profile',
|
|
'proxy': True,
|
|
'indexes': [],
|
|
'constraints': [],
|
|
},
|
|
bases=('core.platformsettings',),
|
|
),
|
|
migrations.CreateModel(
|
|
name='ThawaniSettings',
|
|
fields=[
|
|
],
|
|
options={
|
|
'verbose_name': 'Thawani API',
|
|
'verbose_name_plural': 'Thawani API',
|
|
'proxy': True,
|
|
'indexes': [],
|
|
'constraints': [],
|
|
},
|
|
bases=('core.thawaniconfiguration',),
|
|
),
|
|
migrations.CreateModel(
|
|
name='WablasSettings',
|
|
fields=[
|
|
],
|
|
options={
|
|
'verbose_name': 'Wablas API',
|
|
'verbose_name_plural': 'Wablas API',
|
|
'proxy': True,
|
|
'indexes': [],
|
|
'constraints': [],
|
|
},
|
|
bases=('core.wablasconfiguration',),
|
|
),
|
|
]
|