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.
19 lines
385 B
Python
19 lines
385 B
Python
# Generated by Django 5.0.10 on 2025-06-04 16:50
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('vsl', '0002_rename_date_creation_vsldest_dtcreate_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='vsldest',
|
|
old_name='name',
|
|
new_name='dest',
|
|
),
|
|
]
|