Initial commit (Clean history)
This commit is contained in:
24
app/migrations/0242_customer_dealer_customer_issued_place.py
Normal file
24
app/migrations/0242_customer_dealer_customer_issued_place.py
Normal file
@@ -0,0 +1,24 @@
|
||||
# Generated by Django 5.1.7 on 2025-11-16 05:39
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0241_remove_customer_issued_place_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='customer',
|
||||
name='dealer',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.PROTECT, related_name='+', to='app.dealer'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='customer',
|
||||
name='issued_place',
|
||||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.PROTECT, related_name='+', to='app.issued_place'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user