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.
7 lines
138 B
Python
7 lines
138 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class VslConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'vsl'
|