20 lines
447 B
Python
20 lines
447 B
Python
|
# Generated by Django 5.0.2 on 2024-02-28 19:41
|
||
|
|
||
|
from django.conf import settings
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('api_v1', '0001_createBasicUserInformation'),
|
||
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RenameModel(
|
||
|
old_name='UserInformation',
|
||
|
new_name='Profile',
|
||
|
),
|
||
|
]
|