mirror of
https://github.com/house-of-vanity/OutFleet.git
synced 2025-08-21 14:37:16 +00:00
32 lines
799 B
Python
32 lines
799 B
Python
![]() |
# Generated manually to properly remove old Xray models
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('vpn', '0014_alter_xraycoreserver_client_hostname_and_more'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
# Remove unique_together first to avoid field reference issues
|
||
|
migrations.AlterUniqueTogether(
|
||
|
name='xrayinbound',
|
||
|
unique_together=None,
|
||
|
),
|
||
|
|
||
|
# Remove old models completely
|
||
|
migrations.DeleteModel(
|
||
|
name='XrayClient',
|
||
|
),
|
||
|
migrations.DeleteModel(
|
||
|
name='XrayInbound',
|
||
|
),
|
||
|
migrations.DeleteModel(
|
||
|
name='XrayInboundServer',
|
||
|
),
|
||
|
migrations.DeleteModel(
|
||
|
name='XrayCoreServer',
|
||
|
),
|
||
|
]
|