Mon commit initial
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
# Generated by Django 5.2.7 on 2025-11-12 12:03
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('authentification', '0001_initial'),
|
||||
('gestion_vehicule', '0007_alter_carnetbord_km_fin_mois'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='demandevehicule',
|
||||
name='chauffeur',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='chauffeur_affecter_course', to='authentification.profile'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='demandevehicule',
|
||||
name='nom_passager',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='passager_de_la_demande', to='authentification.profile'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user