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.

64 lines
1.8 KiB

3 years ago
2 years ago
3 years ago
2 years ago
3 years ago
2 years ago
3 years ago
  1. # Generated by Django 2.2.13 on 2021-01-20 17:30
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ("api", "0004_merge_20210114_1117"),
  6. ]
  7. operations = [
  8. migrations.AlterModelOptions(
  9. name="comment",
  10. options={"ordering": ("-created_at",)},
  11. ),
  12. migrations.AlterField(
  13. model_name="label",
  14. name="suffix_key",
  15. field=models.CharField(
  16. blank=True,
  17. choices=[
  18. ("0", "0"),
  19. ("1", "1"),
  20. ("2", "2"),
  21. ("3", "3"),
  22. ("4", "4"),
  23. ("5", "5"),
  24. ("6", "6"),
  25. ("7", "7"),
  26. ("8", "8"),
  27. ("9", "9"),
  28. ("a", "a"),
  29. ("b", "b"),
  30. ("c", "c"),
  31. ("d", "d"),
  32. ("e", "e"),
  33. ("f", "f"),
  34. ("g", "g"),
  35. ("h", "h"),
  36. ("i", "i"),
  37. ("j", "j"),
  38. ("k", "k"),
  39. ("l", "l"),
  40. ("m", "m"),
  41. ("n", "n"),
  42. ("o", "o"),
  43. ("p", "p"),
  44. ("q", "q"),
  45. ("r", "r"),
  46. ("s", "s"),
  47. ("t", "t"),
  48. ("u", "u"),
  49. ("v", "v"),
  50. ("w", "w"),
  51. ("x", "x"),
  52. ("y", "y"),
  53. ("z", "z"),
  54. ],
  55. max_length=1,
  56. null=True,
  57. ),
  58. ),
  59. ]