mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
916 B
34 lines
916 B
# Generated by Django 4.0.2 on 2022-05-12 02:27
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("labels", "0011_remove_relation_direction"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="category",
|
|
name="uuid",
|
|
field=models.UUIDField(default=uuid.uuid4, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name="relation",
|
|
name="uuid",
|
|
field=models.UUIDField(default=uuid.uuid4, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name="span",
|
|
name="uuid",
|
|
field=models.UUIDField(default=uuid.uuid4, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name="textlabel",
|
|
name="uuid",
|
|
field=models.UUIDField(default=uuid.uuid4, null=True),
|
|
),
|
|
]
|