27 lines
646 B
Python
27 lines
646 B
Python
# Generated by Django 5.2.15 on 2026-07-06 13:35
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('fleet', '0005_vehiclenotification_metadata'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Crane',
|
|
fields=[],
|
|
options={
|
|
'verbose_name': 'Dizalica',
|
|
'verbose_name_plural': 'Dizalice',
|
|
'ordering': ['registration_number'],
|
|
'proxy': True,
|
|
'indexes': [],
|
|
'constraints': [],
|
|
},
|
|
bases=('fleet.vehicle',),
|
|
),
|
|
]
|