Created VslDest model with fields for ID, name, creation date, and update date. Added VslConfig to settings.py. Configured admin interface for VslDest. Initialized migrations for VslDest model. Included basic test and view files for future development.
24 lines
731 B
Python
24 lines
731 B
Python
# Generated by Django 5.0.10 on 2025-06-04 16:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='VslDest',
|
|
fields=[
|
|
('id', models.AutoField(primary_key=True, serialize=False, verbose_name='ID du Suivi')),
|
|
('name', models.CharField(max_length=255, verbose_name='Dénomination')),
|
|
('date_creation', models.DateTimeField(auto_now_add=True, verbose_name='Date de création')),
|
|
('date_modification', models.DateTimeField(auto_now=True, verbose_name='Date de modification')),
|
|
],
|
|
),
|
|
]
|