23 lines
726 B
Python
23 lines
726 B
Python
# Generated by Django 5.1.1 on 2024-10-10 10:49
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('Device', '0007_devices_mac_address_devices_unique_id'),
|
|
('otpverification', '0002_otpverification_created_at_otpverification_is_valid_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='DeviceDetails',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('device', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='Device.devices')),
|
|
],
|
|
),
|
|
]
|