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.2 KiB
41 lines
1.2 KiB
# Generated by Django 3.2.11 on 2022-01-28 02:46
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("api", "0033_auto_20220127_0654"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.SeparateDatabaseAndState(
|
|
state_operations=[
|
|
migrations.RemoveField(
|
|
model_name="example",
|
|
name="annotations_approved_by",
|
|
),
|
|
migrations.RemoveField(
|
|
model_name="example",
|
|
name="project",
|
|
),
|
|
migrations.AlterUniqueTogether(
|
|
name="examplestate",
|
|
unique_together=None,
|
|
),
|
|
migrations.RemoveField(
|
|
model_name="examplestate",
|
|
name="confirmed_by",
|
|
),
|
|
migrations.RemoveField(
|
|
model_name="examplestate",
|
|
name="example",
|
|
),
|
|
migrations.DeleteModel(
|
|
name="Comment",
|
|
),
|
|
],
|
|
database_operations=[migrations.AlterModelTable(name="Comment", table="examples_comment")],
|
|
)
|
|
]
|