fixed migration error (breaks db.slqlite3)
This commit is contained in:
parent
5bbc56dfb4
commit
278d990bd0
@ -1,4 +1,4 @@
|
||||
# Generated by Django 3.2.16 on 2024-01-05 10:44
|
||||
# Generated by Django 3.2.16 on 2024-01-05 15:18
|
||||
|
||||
from django.conf import settings
|
||||
from django.db import migrations, models
|
||||
@ -19,7 +19,7 @@ class Migration(migrations.Migration):
|
||||
migrations.CreateModel(
|
||||
name='TicketPriority',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
||||
('title', models.CharField(max_length=32)),
|
||||
('colour', models.CharField(max_length=7)),
|
||||
],
|
||||
@ -27,7 +27,7 @@ class Migration(migrations.Migration):
|
||||
migrations.CreateModel(
|
||||
name='TicketTag',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
||||
('title', models.CharField(max_length=32)),
|
||||
('colour', models.CharField(max_length=7)),
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user