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.

66 lines
1.6 KiB

  1. # Generated by Django 4.0.2 on 2022-05-12 02:27
  2. from django.db import migrations
  3. class Migration(migrations.Migration):
  4. initial = True
  5. dependencies = [
  6. ("examples", "0006_alter_example_upload_name"),
  7. ("labels", "0012_add_uuid_field"),
  8. ]
  9. operations = [
  10. migrations.CreateModel(
  11. name="ExportedCategory",
  12. fields=[],
  13. options={
  14. "proxy": True,
  15. "indexes": [],
  16. "constraints": [],
  17. },
  18. bases=("labels.category",),
  19. ),
  20. migrations.CreateModel(
  21. name="ExportedExample",
  22. fields=[],
  23. options={
  24. "proxy": True,
  25. "indexes": [],
  26. "constraints": [],
  27. },
  28. bases=("examples.example",),
  29. ),
  30. migrations.CreateModel(
  31. name="ExportedRelation",
  32. fields=[],
  33. options={
  34. "proxy": True,
  35. "indexes": [],
  36. "constraints": [],
  37. },
  38. bases=("labels.relation",),
  39. ),
  40. migrations.CreateModel(
  41. name="ExportedSpan",
  42. fields=[],
  43. options={
  44. "proxy": True,
  45. "indexes": [],
  46. "constraints": [],
  47. },
  48. bases=("labels.span",),
  49. ),
  50. migrations.CreateModel(
  51. name="ExportedText",
  52. fields=[],
  53. options={
  54. "proxy": True,
  55. "indexes": [],
  56. "constraints": [],
  57. },
  58. bases=("labels.textlabel",),
  59. ),
  60. ]