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.

65 lines
2.0 KiB

  1. # Generated by Django 3.2.4 on 2021-10-18 05:56
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('api', '0015_examplestate'),
  6. ]
  7. operations = [
  8. migrations.AlterModelOptions(
  9. name='comment',
  10. options={'ordering': ['created_at']},
  11. ),
  12. migrations.AlterModelOptions(
  13. name='example',
  14. options={'ordering': ['created_at']},
  15. ),
  16. migrations.AlterModelOptions(
  17. name='label',
  18. options={'ordering': ['created_at']},
  19. ),
  20. migrations.AddField(
  21. model_name='sequencelabelingproject',
  22. name='allow_overlapping',
  23. field=models.BooleanField(default=False),
  24. ),
  25. migrations.AddField(
  26. model_name='sequencelabelingproject',
  27. name='grapheme_mode',
  28. field=models.BooleanField(default=False),
  29. ),
  30. migrations.AlterField(
  31. model_name='autolabelingconfig',
  32. name='label_mapping',
  33. field=models.JSONField(blank=True, default=dict),
  34. ),
  35. migrations.AlterField(
  36. model_name='comment',
  37. name='created_at',
  38. field=models.DateTimeField(auto_now_add=True, db_index=True),
  39. ),
  40. migrations.AlterField(
  41. model_name='example',
  42. name='created_at',
  43. field=models.DateTimeField(auto_now_add=True, db_index=True),
  44. ),
  45. migrations.AlterField(
  46. model_name='example',
  47. name='filename',
  48. field=models.FileField(default='.', max_length=1024, upload_to=''),
  49. ),
  50. migrations.AlterField(
  51. model_name='label',
  52. name='created_at',
  53. field=models.DateTimeField(auto_now_add=True, db_index=True),
  54. ),
  55. migrations.AlterField(
  56. model_name='label',
  57. name='text',
  58. field=models.CharField(db_index=True, max_length=100),
  59. ),
  60. ]