Files
RasadDam_Backend/apps/pos_device/migrations/0007_providercompany_user_relation.py

21 lines
625 B
Python

# Generated by Django 5.0 on 2025-07-24 09:07
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('authorization', '0019_page_is_active_permissions_is_active'),
('pos_device', '0006_alter_posclientattribute_choices'),
]
operations = [
migrations.AddField(
model_name='providercompany',
name='user_relation',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='pos_provider', to='authorization.userrelations'),
),
]