mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-21 23:42:14 +00:00
Fix sorting of items
W.T.F past self. Char field for a reference number?!
This commit is contained in:
23
training/migrations/0010_auto_20211228_1144.py
Normal file
23
training/migrations/0010_auto_20211228_1144.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.1.13 on 2021-12-28 11:44
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('training', '0009_auto_20211221_1539'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='trainingcategory',
|
||||
name='reference_number',
|
||||
field=models.IntegerField(unique=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='trainingitem',
|
||||
name='reference_number',
|
||||
field=models.IntegerField(),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user