Initial commit (Clean history)
This commit is contained in:
19
app/migrations/0183_people_country.py
Normal file
19
app/migrations/0183_people_country.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 5.1.7 on 2025-07-12 11:50
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0182_people_province_alter_company_province'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='people',
|
||||
name='country',
|
||||
field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.PROTECT, related_name='+', to='app.country'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user