Mon commit initial

This commit is contained in:
2025-12-19 09:43:33 +00:00
commit f11d1e62b4
336 changed files with 6247 additions and 0 deletions

View File

@@ -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'),
),
]