mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-24 12:23:11 +00:00
19 lines
416 B
Python
19 lines
416 B
Python
# Generated by Django 2.2.18 on 2021-05-09 17:29
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('tickets', '0002_auto_20210214_1046'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='ticket',
|
|
name='uuid',
|
|
field=models.UUIDField(default=uuid.uuid4, editable=False),
|
|
),
|
|
]
|