34 lines
873 B
Python
34 lines
873 B
Python
# Generated by Django 4.1.7 on 2023-04-01 03:53
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("paperwork", "0010_switch_certificationversion_to_semver"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="certificationversion",
|
|
options={
|
|
"base_manager_name": "objects",
|
|
"get_latest_by": (
|
|
"major",
|
|
"minor",
|
|
"patch",
|
|
"prerelease",
|
|
"approval_date",
|
|
),
|
|
"ordering": (
|
|
"definition",
|
|
"major",
|
|
"minor",
|
|
"patch",
|
|
"prerelease",
|
|
"approval_date",
|
|
),
|
|
},
|
|
),
|
|
]
|