Coverage for rest_api/migrations/0062_sample_sample_name_be7a19_idx_and_more.py: 100%
4 statements
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-10 03:22 +0000
« prev ^ index » next coverage.py v7.15.4, created at 2026-08-10 03:22 +0000
1# Generated by Django 4.2.10 on 2024-11-06 11:27
3from django.db import migrations, models
6class Migration(migrations.Migration):
8 dependencies = [
9 ("rest_api", "0061_auto_20241031_1135"),
10 ]
12 operations = [
13 migrations.AddIndex(
14 model_name="sample",
15 index=models.Index(fields=["name"], name="sample_name_be7a19_idx"),
16 ),
17 migrations.AddIndex(
18 model_name="sample",
19 index=models.Index(
20 fields=["sequencing_tech"], name="sample_sequenc_99b417_idx"
21 ),
22 ),
23 migrations.AddIndex(
24 model_name="sample",
25 index=models.Index(fields=["country"], name="sample_country_da3900_idx"),
26 ),
27 migrations.AddIndex(
28 model_name="sample",
29 index=models.Index(fields=["host"], name="sample_host_ef80b0_idx"),
30 ),
31 migrations.AddIndex(
32 model_name="sample",
33 index=models.Index(fields=["zip_code"], name="sample_zip_cod_2b199b_idx"),
34 ),
35 migrations.AddIndex(
36 model_name="sample",
37 index=models.Index(fields=["lab"], name="sample_lab_f9c2e2_idx"),
38 ),
39 migrations.AddIndex(
40 model_name="sample",
41 index=models.Index(fields=["lineage"], name="sample_lineage_1bf41c_idx"),
42 ),
43 migrations.AddIndex(
44 model_name="sample",
45 index=models.Index(
46 fields=["genome_completeness"], name="sample_genome__ca4dc9_idx"
47 ),
48 ),
49 migrations.AddIndex(
50 model_name="sample",
51 index=models.Index(
52 fields=["collection_date"], name="sample_collect_861c47_idx"
53 ),
54 ),
55 migrations.AddIndex(
56 model_name="sample",
57 index=models.Index(
58 fields=["init_upload_date"], name="sample_init_up_6bdf99_idx"
59 ),
60 ),
61 migrations.AddIndex(
62 model_name="sample",
63 index=models.Index(
64 fields=["last_update_date"], name="sample_last_up_5f4e06_idx"
65 ),
66 ),
67 ]