Skip to content

Commit 213b5ad

Browse files
committed
fix test migration
1 parent 5378e68 commit 213b5ad

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

django_enum/tests/enum_prop/migrations/0001_initial.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Django 3.2.15 on 2022-08-17 12:37
1+
# Generated by Django 3.2.16 on 2022-10-25 11:36
22

33
from django.db import migrations, models
44
import django_enum.fields
@@ -34,7 +34,6 @@ class Migration(migrations.Migration):
3434
('non_strict_int', django_enum.fields.EnumPositiveSmallIntegerField(blank=True, choices=[(0, 'Value 1'), (2, 'Value 2'), (32767, 'Value 32767')], default=5, null=True)),
3535
('non_strict_text', django_enum.fields.EnumCharField(blank=True, choices=[('V1', 'Value1'), ('V22', 'Value2'), ('V333', 'Value3'), ('D', 'Default')], default='', max_length=12)),
3636
('no_coerce', django_enum.fields.EnumPositiveSmallIntegerField(blank=True, choices=[(0, 'Value 1'), (2, 'Value 2'), (32767, 'Value 32767')], default=None, null=True)),
37-
('gnss', django_enum.fields.EnumPositiveSmallIntegerField(blank=True, choices=[(1, 'Gps'), (2, 'Glonass'), (4, 'Galileo'), (8, 'Beidou'), (16, 'Qzss')], default=3)),
3837
],
3938
options={
4039
'ordering': ('id',),

0 commit comments

Comments
 (0)