|
| 1 | +# Generated by Django 4.2.23 on 2025-09-16 14:45 |
| 2 | + |
| 3 | +from django.db import migrations, models |
| 4 | + |
| 5 | + |
| 6 | +class Migration(migrations.Migration): |
| 7 | + |
| 8 | + dependencies = [ |
| 9 | + ("tag", "0001_initial"), |
| 10 | + ("allocation", "0005_auto_20211117_1413"), |
| 11 | + ] |
| 12 | + |
| 13 | + operations = [ |
| 14 | + migrations.AlterModelOptions( |
| 15 | + name="historicalallocation", |
| 16 | + options={ |
| 17 | + "get_latest_by": ("history_date", "history_id"), |
| 18 | + "ordering": ("-history_date", "-history_id"), |
| 19 | + "verbose_name": "historical allocation", |
| 20 | + "verbose_name_plural": "historical allocations", |
| 21 | + }, |
| 22 | + ), |
| 23 | + migrations.AlterModelOptions( |
| 24 | + name="historicalallocationattribute", |
| 25 | + options={ |
| 26 | + "get_latest_by": ("history_date", "history_id"), |
| 27 | + "ordering": ("-history_date", "-history_id"), |
| 28 | + "verbose_name": "historical allocation attribute", |
| 29 | + "verbose_name_plural": "historical allocation attributes", |
| 30 | + }, |
| 31 | + ), |
| 32 | + migrations.AlterModelOptions( |
| 33 | + name="historicalallocationattributechangerequest", |
| 34 | + options={ |
| 35 | + "get_latest_by": ("history_date", "history_id"), |
| 36 | + "ordering": ("-history_date", "-history_id"), |
| 37 | + "verbose_name": "historical allocation attribute change request", |
| 38 | + "verbose_name_plural": "historical allocation attribute change requests", |
| 39 | + }, |
| 40 | + ), |
| 41 | + migrations.AlterModelOptions( |
| 42 | + name="historicalallocationattributetype", |
| 43 | + options={ |
| 44 | + "get_latest_by": ("history_date", "history_id"), |
| 45 | + "ordering": ("-history_date", "-history_id"), |
| 46 | + "verbose_name": "historical allocation attribute type", |
| 47 | + "verbose_name_plural": "historical allocation attribute types", |
| 48 | + }, |
| 49 | + ), |
| 50 | + migrations.AlterModelOptions( |
| 51 | + name="historicalallocationattributeusage", |
| 52 | + options={ |
| 53 | + "get_latest_by": ("history_date", "history_id"), |
| 54 | + "ordering": ("-history_date", "-history_id"), |
| 55 | + "verbose_name": "historical allocation attribute usage", |
| 56 | + "verbose_name_plural": "historical allocation attribute usages", |
| 57 | + }, |
| 58 | + ), |
| 59 | + migrations.AlterModelOptions( |
| 60 | + name="historicalallocationchangerequest", |
| 61 | + options={ |
| 62 | + "get_latest_by": ("history_date", "history_id"), |
| 63 | + "ordering": ("-history_date", "-history_id"), |
| 64 | + "verbose_name": "historical allocation change request", |
| 65 | + "verbose_name_plural": "historical allocation change requests", |
| 66 | + }, |
| 67 | + ), |
| 68 | + migrations.AlterModelOptions( |
| 69 | + name="historicalallocationuser", |
| 70 | + options={ |
| 71 | + "get_latest_by": ("history_date", "history_id"), |
| 72 | + "ordering": ("-history_date", "-history_id"), |
| 73 | + "verbose_name": "historical allocation user", |
| 74 | + "verbose_name_plural": "historical Allocation User Status", |
| 75 | + }, |
| 76 | + ), |
| 77 | + migrations.AddField( |
| 78 | + model_name="allocation", |
| 79 | + name="tags", |
| 80 | + field=models.ManyToManyField(blank=True, to="tag.tag"), |
| 81 | + ), |
| 82 | + migrations.AlterField( |
| 83 | + model_name="historicalallocation", |
| 84 | + name="history_date", |
| 85 | + field=models.DateTimeField(db_index=True), |
| 86 | + ), |
| 87 | + migrations.AlterField( |
| 88 | + model_name="historicalallocationattribute", |
| 89 | + name="history_date", |
| 90 | + field=models.DateTimeField(db_index=True), |
| 91 | + ), |
| 92 | + migrations.AlterField( |
| 93 | + model_name="historicalallocationattributechangerequest", |
| 94 | + name="history_date", |
| 95 | + field=models.DateTimeField(db_index=True), |
| 96 | + ), |
| 97 | + migrations.AlterField( |
| 98 | + model_name="historicalallocationattributetype", |
| 99 | + name="history_date", |
| 100 | + field=models.DateTimeField(db_index=True), |
| 101 | + ), |
| 102 | + migrations.AlterField( |
| 103 | + model_name="historicalallocationattributeusage", |
| 104 | + name="history_date", |
| 105 | + field=models.DateTimeField(db_index=True), |
| 106 | + ), |
| 107 | + migrations.AlterField( |
| 108 | + model_name="historicalallocationchangerequest", |
| 109 | + name="history_date", |
| 110 | + field=models.DateTimeField(db_index=True), |
| 111 | + ), |
| 112 | + migrations.AlterField( |
| 113 | + model_name="historicalallocationuser", |
| 114 | + name="history_date", |
| 115 | + field=models.DateTimeField(db_index=True), |
| 116 | + ), |
| 117 | + ] |
0 commit comments