Skip to content
Snippets Groups Projects

Explicitly set AK ordering (by PK)

Merged Benjamin Hättasch requested to merge fix-ak-order into main
2 files
+ 18
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 17
0
 
# Generated by Django 4.1.9 on 2023-05-15 18:47
 
 
from django.db import migrations
 
 
 
class Migration(migrations.Migration):
 
 
dependencies = [
 
('AKModel', '0057_upgrades'),
 
]
 
 
operations = [
 
migrations.AlterModelOptions(
 
name='ak',
 
options={'ordering': ['pk'], 'verbose_name': 'AK', 'verbose_name_plural': 'AKs'},
 
),
 
]
Loading