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.
41 lines
1.4 KiB
41 lines
1.4 KiB
# Generated by Django 3.2.11 on 2022-01-28 02:46
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("examples", "0001_initial"),
|
|
("labels", "0003_auto_20220127_0654"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.SeparateDatabaseAndState(
|
|
state_operations=[
|
|
migrations.AlterField(
|
|
model_name="category",
|
|
name="example",
|
|
field=models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE, related_name="categories", to="examples.example"
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="span",
|
|
name="example",
|
|
field=models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE, related_name="spans", to="examples.example"
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="textlabel",
|
|
name="example",
|
|
field=models.ForeignKey(
|
|
on_delete=django.db.models.deletion.CASCADE, related_name="texts", to="examples.example"
|
|
),
|
|
),
|
|
],
|
|
database_operations=[],
|
|
)
|
|
]
|