mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
18 lines
377 B
Python
18 lines
377 B
Python
|
from django.conf import settings
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
||
|
('api', '0034_auto_20230430_1640'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RenameModel(
|
||
|
old_name='Profile',
|
||
|
new_name='Robot',
|
||
|
),
|
||
|
]
|