21 lines
574 B
Python
21 lines
574 B
Python
# Generated by Django 5.0.4 on 2024-04-22 12:35
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('Accounts', '0002_remove_userprofile_billing_address_and_more'),
|
|
('Device', '0004_alter_devices_pod'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='devices',
|
|
name='used_by',
|
|
field=models.ForeignKey(on_delete=django.db.models.deletion.DO_NOTHING, to='Accounts.userprofile'),
|
|
),
|
|
]
|