-
-
Notifications
You must be signed in to change notification settings - Fork 218
/
Copy pathmigrations.lock
1277 lines (1277 loc) · 36.5 KB
/
migrations.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is autogenerated every time Django migrations are written
# by the `makemigrations` management command.
# You can also update it to match current migrations by executing:
#
# ./manage.py makemigrations --lock-update
#
# The commcare-hq automated tests require that the contents of this file
# match the current Django migrations list. If that check fails on a
# GitHub PR, the PR will not be eligible for merging. You can check if
# the current state of this file will pass automated tests by executing:
#
# ./manage.py makemigrations --lock-check
#
# Although integrated into the Django `makemigrations` utility, this
# file is not part of the Django ecosystem. It is a migration safety
# feature added by commcare-hq.
# See: ./hqscripts/management/commands/makemigrations.py
#
accounting
0001_squashed_0052_ensure_report_builder_plans
0002_auto_20170222_2008
0003_auto_20170328_2102
0004_auto_20170404_0028
0005_automatic_downgrade_adjustment_method
0006_unique_active_domain_subscription
0007_practice_mobile_workers
0008_update_report_builder_included_feature_numbers
0009_make_billingaccount_name_unique
0010_remove_softwareproduct_product_type
0011_remove_softwareproduct
0012_replace__product_type__with__is_product
0013_subscription_dates_check
0014_paymentmethod__web_user__nonnullable
0015_grandfather_login_as
0016_grandfather_reportbuilder_5_pro
0017_nonnullable_char_fields
0018_alter_nonnullable_char_fields
0019_standard_pricing_march_2018
0020_payment_method__unique_together
0021_standard_user_limit_march_2018
0022_add__skip_auto_downgrade_reason
0023_auto_20180501_1813
0024_unique__transaction_id
0025_auto_20180508_1952
0026_auto_20180508_1956
0027_auto_20180509_1857
0028_auto_20180604_1757
0029_auto_20180605_1826
0030_softwareplan_max_domains
0031_billingaccount_billing_admin_emails
0032_customerinvoice_squashed_0036_customerbillingrecord
0033_auto_20180709_1837
0034_remove_subscription_date_delay_invoicing
0032_billingaccount_invoicing_plan
0034_merge_20180711_1828
0035_merge_20180711_2039
0036_domainuserhistory
0035_enterprise_settings
0037_merge_20180807_0915
0038_remove_billingaccount_restrict_signup_email
0039_auto_20180828_2258
0040_auto_20181002_1721
0041_auto_20190130_1709
0042_domain_user_history__unique__and__nonnullable
0043_grandfather_case_privs
0044_grandfather_odata_privs
0045_grandfather_data_forwarding_privs
0046_new_plans
0047_invoice_communication
0048_friendly_writeoff
0049_auto_20200924_1753
0050_app_user_profiles
0051_hubspot_restrictions
0052_geocoder_permissions
0053_app_user_profiles_advanced
0054_default_export_settings
0055_linked_projects
0056_add_release_management
0057_add_sms_report_toggle
0058_delete_linked_projects_role
0059_add_lite_release_management_priv
0060_add_loadtest_users_priv
0061_remove_enterprise_v1
0062_add_release_management_to_enterprise
0063_replace_linked_projects_ff_with_erm
0064_add_form_link_workflow_priv
0065_phone_apk_heartbeat_privs
0066_data_file_download_priv
0067_add_view_app_diff_priv
0068_regex_field_validation_privilege
0069_location_safe_case_imports_priv
0070_form_case_ids_case_importer_priv
0071_add_billingaccountwebuserhistory
0072_export_multisort_priv
0073_export_ownership_priv
0074_filtered_bulk_user_download_priv
0075_application_error_report_priv
0076_location_owner_in_report_builder_priv
0077_case_list_explorer_priv
0078_revert_location_owner_in_report_builder_priv
0079_add_web_user_feature
0080_add_web_user_feature_in_other_models
0081_billingaccount_bill_web_user
0082_application_error_report_priv
0083_data_dictionary_priv
0084_copy_cases_priv
0085_remove_free_50_sms
0086_add_duplicate_invoice_id_to_invoice_model
0087_invoice_unique_constraints
0088_add_new_softwareplan_visibility
0089_dedupe_priv
0090_custom_domain_alerts_priv
0091_remove_custom_banner_alerts_feature_flag
0092_revert_application_error_report_priv
0093_defaultproductplan_is_annual_plan
0094_add_annual_softwareplans
0095_update_softwareplan_visibilities
0096_formsubmittingmobileworkerhistory_and_featuretype_choice
0097_add_form_submitting_mobile_worker_feature
0098_app_dependencies_priv
admin
0001_initial
0002_logentry_remove_auto_add
0003_logentry_add_action_flag_choices
aggregate_ucrs
0001_initial_squashed_0008_auto_20180625_1105 (8 squashed migrations)
0002_auto_20180827_1148
analytics
0001_initial
0002_data_point_unique_constraint
api
0001_initial
0002_alter_permissions
0003_populate_apiuser
0004_rename_apiuser
app_execution
0001_initial
0002_alter_appworkflowconfig_unique_together
0003_appexecutionlog_updated
0004_alter_appworkflowconfig_notification_emails_and_more
app_manager
0001_linked_app_domain
0002_latestenabledbuildprofiles
0003_auto_20190326_0853
0004_latestenabledbuildprofiles_active
0005_latestenabledbuildprofiles_domain
0006_multi_master_linked_apps
0007_add_linked_app_fields_to_es
0008_remove_uses_master_app_form_ids
0009_resourceoverride
0010_run_add_resource_overrides
0009_add_sqlglobalappconfig
0010_merge_20191211_1921
0011_merge_20191212_0936
0010_sqlglobalappconfig
0011_merge_20191212_0106
0012_merge_20191217_0605
0013_rename_sqlglobalappconfig
0014_create_exchangeapplication
0015_alter_exchangeapplication
0016_alter_exchangeapplication
0017_migrate_case_search_relevant
0018_migrate_case_search_labels
0019_exchangeapplication_required_privileges
0020_exchangeapplication_allow_blank_privilege
0021_migrate_case_search_itemset_ids
0022_migrate_to_conditional_case_update
0023_applicationreleaselog
0024_applicationreleaselog_info
0025_migrate_to_search_filter_flag
0026_conditional_case_update_deleted_apps
0027_add_case_tile_template_field
0028_case_list_custom_variable_xml_to_dict
0029_delete_case_list_custom_variable_xml
auditcare
0001_sqlmodels
0002_uniques
0003_truncatechars
0004_add_couch_id
0005_auditcaremigrationmeta
0006_auto_20210811_1215
0007_delete_auditcaremigrationmeta
auth
0001_initial
0002_alter_permission_name_max_length
0003_alter_user_email_max_length
0004_alter_user_username_opts
0005_alter_user_last_login_null
0006_require_contenttypes_0002
0007_alter_validators_add_error_messages
0008_alter_user_username_max_length
0009_alter_user_last_name_max_length
0010_alter_group_name_max_length
0011_update_proxy_permissions
0012_alter_user_first_name_max_length
blobs
0001_squashed_0009_domains
0002_blobmeta
0003_big_content
0004_blobmeta_form_attachments
0005_negative_id
0006_restrict_form_attachments
0007_drop_blobmeta_view
0008_deletedblobmeta
0009_delete_blobexpiration
0010_auto_20191023_0938
0011_blobmeta_compressed
0012_rename_indexes
0013_drop_icds_cas_index
0014_alter_deletedblobmeta_id
case_importer
0001_initial
0002_auto_20161206_1937
0003_caseuploadrecord_couch_user_id
0004_caseuploadrecord_case_type
0005_caseuploadfilemeta
0006_caseuploadrecord_upload_file_meta
0007_auto_20161209_2004
0008_caseuploadrecord_task_status_json
0009_caseuploadrecord_comment
0010_caseuploadformrecord
0011_update_blob_paths
0012_auto_20190405_1747
0013_make_duplicates_errors
case_search
0001_initial
0002_auto_20161114_1901
0003_casesearchqueryaddition
0004_auto_20170518_2018
0005_migrate_json_config
0006_remove_casesearchconfig__config
0007_auto_20170522_1506
0008_auto_20180119_1716
0009_delete_casesearchqueryaddition
0010_casesearchconfig_synchronous_web_apps
0011_domainsnotincasesearchindex
0012_casesearchconfig_sync_cases_on_form_entry
0013_casesearchconfig_fuzzy_prefix_length
0014_casesearchconfig_index_name
0015_csqlfixtureexpression_csqlfixtureexpressionlog
cleanup
0001_convert_change_feed_checkpoint_to_sql
0002_convert_mc_checkpoint_to_sql
0003_convert_fluff_checkpoints_to_sql
0004_convert_ucr_checkpoints_to_sql
0005_convert_mvp_checkpoints_to_sql
0006_convert_report_es_checkpoints_to_sql
0007_convert_es_checkpoints_to_sql
0008_convert_sofabed_checkpoints_to_sql
0009_convert_final_checkpoints_to_sql
0010_rename_default_change_feed_checkpoint
0011_merge_couch_sql_pillows
0012_add_es_index_to_checkpoint_ids
0013_migrate_kafka_checkpoint_format
0014_deletedcouchdoc
0015_deletedcouchdoc_unique_id_and_type
0016_add_deletedsqldoc
0017_delete_oauth_integrations_models
cloudcare
0001_initial
0002_sqlapplicationaccess
0003_rename_sqlapplicationaccess
commtrack
0001_initial
0002_stockstate_last_modified_form_id
0003_create_config_models
0004_update_overstock_threshold
0005_populate_config_models
0006_remove_sqlcommtrackconfig_couch_id
0007_rename_sql_models
0008_delete_stockstate
consumption
0001_initial
0002_populate_sqldefaultconsumption
0003_remove_sqldefaultconsumption_couch_id
0004_rename_sqldefaultconsumption
contenttypes
0001_initial
0002_remove_content_type_name
couchforms
0001_initial
0002_auto_20170802_1505
0003_auto_20170808_1212
0004_unfinishedarchivestub
0005_index_cleanup
0006_unfinishedarchivestub_attempts
0007_auto_20191210_2206
0008_auto_20200701_0742
custom_data_fields
0001_initial
0002_populate_customdatafieldsdefinition
0003_remove_sqlcustomdatafieldsdefinition_couch_id
0004_rename_tables
0005_customdatafieldsprofile
0006_auto_20200924_1753
0007_custom_data_fields_erm_support
0008_custom_data_fields_upstream_ids
0009_field_required_for
0010_customdatafieldsdefinition_profile_required_for_user_type
data_analytics
0001_squashed_0004_auto_20150810_1710
0002_maltrow_threshold
0003_auto_20160205_0927
0004_experienced_threshold
0005_girrow
0006_unique_girrow
0007_auto_20160819_1423
0008_auto_20161114_1903
0009_remove_girrow_wam
0010_maltrow_last_run_date
0011_domainmetrics
0012_update_domainmetrics_fields
data_dictionary
0001_squashed_0002_auto_20161116_2209
0002_auto_20161118_1537
0003_auto_20161128_2047
0004_auto_20161130_2125
0005_casetype_fully_generated
0006_caseproperty_group
0007_property_type_choices
0008_casepropertyallowedvalue
0009_caseproperty_label
0010_caseproperty_index
0011_casepropertygroup
0012_populate_case_property_groups
0013_auto_20230529_1614
0014_auto_20230705_2007
0015_casetype_is_deprecated
0016_remove_case_property_group_and_rename_group_obj_caseproperty_group
data_interfaces
0001_initial
0002_remove_exists_option
0003_update__automaticupdaterulecriteria__match_type__choices
0004_optional_modified_date_and_prop_type_choices
0005_remove_match_type_choices
0006_case_rule_refactor
0007_logging_models
0008_update_case_rulesubmission
0009_scheduling_integration
0010_automaticupdaterule_workflow
0011_domaincaserulerun_num_creates
0012_createscheduleinstanceactiondefinition_reset_case_property_name
0013_createscheduleinstanceactiondefinition_scheduler_module_info
0014_createscheduleinstanceactiondefinition_start_date_case_property
0015_automaticupdaterule_locked_for_editing
0016_createscheduleinstanceactiondefinition_specific_start_date
0017_alter_domaincaserulerun
0018_check_for_rule_migration
0019_remove_old_rule_models
0020_make_migrated_nullable
0021_remove_automaticupdaterule_migrated
0022_domaincaserulerun_case_type
0023_auto_20210914_1726
0024_add_automaticupdaterule_upstream_id
0025_domaincaserulerun_num_errors
0026_automaticupdaterule_criteria_operator
0027_auto_20220511_2017
0028_auto_20220420_1301
0029_locationfilterdefinition_include_child_locations
0030_add_workflow_choices
0031_add_domaincaserulerun_status_choices
0032_bootstrap_audit_events_for_update_rules
0033_automaticupdaterule_deleted_on
0034_case_name_actions
0035_add_case_duplicate_new
0036_backfill_dedupe_match_values
0037_add_dedupe_update_toggle
0038_alter_caseduplicate_potential_duplicates
dhis2
0001_initial
0002_auto_20170322_1323
0003_jsonapilog_log_level
0004_auto_20171122_0827
0005_delete_jsonapilog
0006_sqldhis2connection
0007_populate_sqldhis2connection
0008_rename_sqldhis2connection
0009_sqldatasetmap_sqldatavaluemap
0010_populate_sqldatasetmap
0011_delete_dhis2connection
0012_add_complete_date_column_to_sql_dataset_map
django_celery_results
0001_initial
0002_add_task_name_args_kwargs
0003_auto_20181106_1101
0004_auto_20190516_0412
0005_taskresult_worker
0006_taskresult_date_created
0007_remove_taskresult_hidden
0008_chordcounter
0009_groupresult
0010_remove_duplicate_indices
0011_taskresult_periodic_task_name
django_digest
0001_initial
django_prbac
0001_initial
domain
0001_initial
0002_auto_20171020_1428
0003_auto_20180525_1551
0004_domainauditrecordentry
0005_ga_opt_out
0006_fix_domain_es_docs
0007_auto_20200924_1753
0008_use_livequery
0009_restrict_mob_access_from_FF
0010_projectlimit
0011_alloweducrexpressionsettings
0012_operatorcalllimitsettings
0013_accountconfirmationsettings_squashed_0016_alter_smsaccountconfirmationsettings_project_name (4 squashed migrations)
0014_appreleasemodesetting
0015_delete_projectlimit
domain_migration_flags
0001_initial
0002_migrate_data_from_tzmigration
0003_add_migration_dates
dropbox
0001_initial
email
0001_initial
0002_emailsettings_return_path_email
0003_emailsettings_password_cbc
enterprise
0001_initial
0002_enterprisepermissions_account_unique
0003_enterprisepermissions_modify_account
0004_enterprisemobileworkersettings
es
0001_bootstrap_es_indexes
0002_add_tombstones
0003_add_assigned_location_ids
0004_make_new_indexes
0005_add_epoch_as_valid_date_to_forms
0006_verify_es2_indices_reindexed
0007_init_indices_for_fresh_es_5
0008_add_doc_id_to_all_mappings
0009_add_indices_for_reindex_in_es5
0010_delete_reverted_indices
0011_add_indices_for_es5_reindex
0012_add_new_index_for_bha
events
0001_add_events_model
0002_attendancetrackingconfig
0003_event_attendance_taker_ids
0004_event_id_case_id
0005_rename_alter_event__attendance_taker_ids
0006_remove_end_date_constraint
0007_alter_event_attendee_list_status
0008_alter_event__case_id
0009_attendeemodel
0010_event_location
export
0001_initial
0002_datafile
0003_emailexportwhendonerequest
0004_datafile_delete_after
0005_datafile_blobmeta
0006_delete_dailysavedexportnotification
0007_auto_20190906_0149
0008_auto_20190906_2008
0009_incrementalexport_incrementalexportcheckpoint
0010_defaultexportsettings
0011_defaultexportsettings_usecouchfiletypes
0012_defaultexportsettings_remove_duplicates_option
0013_rm_incrementalexport
fhir
0001_initial
0002_fhirresourcetype
0003_auto_20210319_0948
0004_remove_fhirresourcetype_template
0005_fhirimportconfig
0006_fhirimportresourcetype_resourcetyperelationship
0007_fhirimportresourceproperty
0008_blank_search_params
0009_resourcetyperelationship_related_resource_is_parent
0010_fhirimportconfig_frequency_choices
0011_fhirimportconfig_owner_type
field_audit
0001_initial
0002_add_is_bootstrap_column
fixtures
0001_initial
0002_rm_blobdb_domain_fixtures
0003_rm_blobdb_domain_fixtures
0004_userlookuptablestatus
0005_sqllookuptablemodels (3 squashed migrations)
0008_sqllookuptables
0009_remove_lookuptablerowowner_couch_id
0010_lookuptable_is_synced
form_processor
0001_initial
0002_xformattachmentsql
0003_auto_20151104_2226
0004_create_commcarecasesql
0005_make_case_uuid_unique_indexed
0006_commcarecaseindexsql
0007_index_case_uuid_on_commcarecaseindex
0008_add_index_for_caseforms_case_uuid
0009_add_xform_operation_model_and_state
0010_add_auth_and_openrosa_fields
0011_add_fields_for_deprecation
0012_xforminstancesql_problem
0013_caseattachmentsql
0014_caseattachmentsql_index_on_foreign_key
0015_change_related_names_for_form_attachment
0016_index_case_attachment_uuid
0017_problem_to_text_field
0018_xforminstancesql_user_id
0019_allow_closed_by_null
0020_rename_index_relationship
0021_change_case_forms_related_name
0022_set_default_value_for_case_json
0023_make_case_name_top_level
0024_rename_case_type
0025_caseforms_server_date
0026_caseforms_to_casetransaction
0027_allow_null_form_uuid_in_case_transaction
0025_add_dict_defaults_for_xform
0026_xforminstancesql_initial_processing_complete
0028_merge
0029_drop_not_null_from_opened_on_by
0030_casetransaction_revoked
0031_add_details_field_to_case_transaction
0032_change_transaction_related_name
0033_commcarecasesql_location_uuid
0034_location_id_index
0035_remove_varchar_pattern_ops_indexes
0036_cleanup_models
0037_get_form_by_id_fn
0038_form_functions
0039_auto_20151130_1748
0039_case_functions
0040_save_functions
0041_noop_specify_table_names
0042_change_choice_values
0043_rename_to_match
0044_remove_foreign_key_to_case
0045_casetransaction_sync_log_id
0046_add_not_null_constraint_to_owner_id
0047_add_deleted_state
0048_attachment_content_length_blob_id
0049_case_attachment_props
0050_allow_null_content_type
0051_auto_20160224_0922
0052_auto_20160224_1011
0053_add_deletion_fields
0054_ledgertransaction
0055_daily_consumption
0056_last_modified_form_id
0057_ledger_value_domain_location
0058_update_indexes
0059_remove_ledgervalue_location_id
0060_convert_case_ids_to_foreign_keys
0061_blob_bucket
0062_auto_20160905_0938
0063_auto_20160908_0954
0064_auto_20170725_0943
0065_auto_20170725_1339
0066_auto_20170818_2020
0067_auto_20170915_1506
0068_xforminstancesql_modified_on
0069_add_metafields
0070_auto_20180329_1016
0071_case_attachment_refactor
0072_case_attachment_drops
0073_drop_case_uuid_like_index
0074_casetransaction__client_date
0075_auto_20181026_0951
0076_form_attachment_fk
0077_null_properties
0078_blobmeta_migrated_check
0079_add_xmlns_index
0080_migrate_delta_1_add_column
0081_migrate_delta_2_create_trigger
0082_migrate_delta_3_backfill_notnull
0083_migrate_delta_4_switch_columns
0084_migrate_delta_5_alter_field
0085_migrate_balance_1_add_column
0086_migrate_balance_2_create_trigger
0087_migrate_balance_3_backfill_notnull
0088_migrate_balance_4_switch_columns
0089_migrate_balance_5_alter_field
0090_auto_20190523_0833
0091_auto_20190603_2023
0092_auto_20200924_1753
0093_rename_models (5 squashed migrations)
0094_add_partial_index_xforms
0095_remove_xforminstance_deleted_state
0096_add_partial_index_cases
formplayer_api
0001_drop_old_tables
generic_inbound
0001_initial
0002_configurableapivalidation
0003_add_logging_models
0004_add_filter_expression
0005_remove_requestlog_unused_fields
0006_backend_external_response
geospatial
0001_create_geopolygon
0002_geoconfig
0003_auto_20230908_0927
0004_auto_20230920_0821
0005_auto_20240202_0807
0006_geoconfig_max_cases_per_user_and_more
0007_geoconfig_max_case_distance_and_more
0008_geoconfig_flag_assigned_cases
hqadmin
0001_initial
0002_vcmmigrationaudit
0003_auto_20160715_1543
0004_auto_20160715_1547
0005_auto_20160715_1612
0006_esrestorepillowcheckpoints
0007_esrestorepillowcheckpoint_datefield
0008_delete_vcmmigration
0009_auto_20170315_1322
0010_sqlhqdeploy
0011_alter_hqdeploy_environment
0012_alter_hqdeploy_diffurl
0013_populate_sqlhqdeploy
0014_remove_sqlhqdeploy_couch_id
0015_rename_sqlhqdeploy
0016_hqdeploy_ordering
0017_hqdeploy_commit
0018_back_populate_deploy_commit
0019_celery_taskmeta_sequence
0020_celery_results_sequence
hqmedia
0001_initial
hqwebapp
0001_initial
0002_auto_20171121_1803
0003_maintenancealert_domains
0004_apikeysettings
0005_delete_apikeysettings
0006_create_user_access_log
0007_user_access_agent
0008_hqoauthapplication
0009_truncate_authtoken_table
0010_maintenancealert_scheduling
0011_add_new_columns_and_rename_model
integration
0001_initial
0002_dialersettings
0003_hmaccalloutsettings
0004_gaenotpserversettings
0005_gaenotpserversettings_server_type
ivr
0001_initial
0002_call_app_id
linked_domain
0001_initial
0002_migrate_linked_apps
0003_auto_20180207_0857
0004_domainlinkhistory
0005_migrate_linked_app_toggle
0006_auto_20180208_1139
0007_auto_20180215_1434
0008_hidden_history
0008_auto_20190405_1747
0009_merge_20190408_1729
0010_auto_20200622_0156
0011_auto_20200728_2316
0012_auto_20200929_0809
0013_auto_20201005_2215
0014_auto_20210503_1758
0015_add_previews_to_choices_20210617_2010
0016_reorder_history_model_choices
0017_add_tableau_choice_20210720_1908
0018_auto_20210806_1526
0019_update_remote_base_url_help_text
0020_auto_20211102_1501
0021_alter_domainlinkhistory_model
0022_alter_domainlinkhistory_model
0023_alter_domainlinkhistory_model
0024_alter_domainlinkhistory_model
locations
0001_initial
0002_auto_20160420_2105
0003_remove_null_True
0004_auto_20160914_2030
0005_locationtype_include_without_expanding
0006_locationfixtureconfiguration
0007_add_blank_true
0008_increase_name_max_length
0009_create_location_index
0009_add_location_user_fields
0010_merge_20170511_0724
0011_locationtype_include_only
0012_get_location_fixture_ids
0013_rm_mptt_fields
0013_adding_indices_for_warehouse
0014_merge_20180601_0608
0015_create_related_locations
0016_locationrelation_distance
0017_locationrelation_last_modified
0018_auto_20200430_1601
0019_auto_20200924_1753
0020_delete_locationrelation
0021_add_fixture_queryset_case_sync_restriction
0022_locationtype_has_users
mobile_auth
0001_initial
0002_delete_sqlmobileauthkeyrecord
motech
0001_initial
0002_requestlog_payload_id
0003_auto_20200102_1006
0004_connectionsettings
0005_requestlog_request_body
0006_connection_settings
0007_auto_20200909_2138
0008_requestlog_response_headers
0009_auto_20211122_2011
0010_auto_20211124_1931
0011_connectionsettings_is_deleted
0012_alter_connectionsettings_auth_type
0013_alter_connectionsettings_auth_type
0014_alter_connectionsettings_password
0015_requestlog_duration
0016_connectionsettings_include_client_id_and_more
notifications
0001_squashed_0003_auto_20160504_2049 (3 squashed migrations)
0002_auto_20160505_2058
0003_lastseennotification
0004_auto_20160830_2002
0005_domain_specific_notifications
0006_add_billing_type
0007_auto_20170704_1643
0008_add_notification_types
oauth2_provider
0001_initial
0002_auto_20190406_1805
0003_auto_20201211_1314
0004_auto_20200902_2022
0005_auto_20211222_2352
0006_alter_application_client_secret
0007_application_post_logout_redirect_uris
ota
0001_initial
0002_alter_db_index
0003_add_serial_id_model
0004_mobilerecoverymeasure
0005_rm_max_length_from_integer
0006_one_reinstall_measure
0007_update_blob_paths
0008_auto_20190108_1808
0009_devicelogrequest
0010_alter_devicelogrequest
0011_remove_devicelogrequest_deviceid
otp_static
0001_initial
0002_throttling
otp_totp
0001_initial
0002_auto_20190420_0723
phone
0001_initial
0002_synclogsql
0003_auto_20190405_1752
0004_auto_20191021_1308
0005_auto_20210119_1001
0006_synclogsql_auth_type
0007_delete_ownershipcleanlinessflag
phonelog
0001_initial
0002_auto_20160219_0951
0003_auto_20160225_0420
0002_auto_20160218_1613
0004_merge
0005_add_forceclose_entry_20160408_1530
0006_usererrorentry_context_node
0007_devicelog_indexes
0008_devicelog_varchar_index
0009_userentry_server_date
0010_rename_device_model
0011_partition_devicelogentry
0012_server_date_not_null
0013_delete_olddevicereportentry
0014_auto_20170718_2039
phonenumber
0001_squashed_0001_initial (10 squashed migrations)
pillow_retry
0001_initial
0002_pillowerror_queued
0003_auto_20151002_0944
0004_auto_drop_legacy_ucr_errors
0005_auto_20160923_1913
0006_auto_20170615_0327
0007_remove_pillowerror_queued
0008_index_cleanup
0009_pillow_error_pk_to_bigint
pillowtop
0001_initial
0002_djangopillowcheckpoint_sequence_format
0003_auto_20170411_1957
0004_offset_to_big_int
0005_kafkacheckpoint_doc_modification_time
0006_add_geopoint_to_case_search_index
0007_copy_xforms_checkpoint
preindex
0001_initial
0002_initial
products
0001_initial
project_limits
0001_initial
0002_ratelimitedtwofactorlog
0003_pillowlaggaugedefinition
registration
0001_initial
0002_alter_request_ip
0003_populate_sqlregistrationrequest
0004_rename_sqlregistrationrequest
0005_asyncsignuprequest
0006_selfsignupworkflow
registry
0001_initial
0002_registry_slug_globally_unique
0003_schema_validation
0004_auto_20210907_1459
0005_auto_20210923_1036
0006_auto_20211011_1356
0007_delete_registrypermission
reminders
0001_initial
repeaters
0001_adjust_auth_field_format_squashed_0015_drop_connection_settings_fk
0002_repeaters_db
0003_id_fields
0004_fix_whitelist_bug_repeaters
0005_datasourcerepeater
0006_int_state_add_next_check_rm_repeater_id
0007_lengthen_payload_id
0008_sqlrepeatrecords
0009_add_domain_to_indexes
0010_rm_couch_artifacts
0011_remove_obsolete_entities
0012_formexpressionrepeater_arcgisformexpressionrepeater
0013_alter_repeatrecord_state_and_more
0014_alter_repeater_request_method
0015_drop_receiverwrapper_couchdb
0016_repeater_max_workers
0017_add_indexes
reports
0001_initial
0002_auto_20171121_1803
0003_multiselect_report_filters_are_lists
0004_tableauserver_tableauvisualization
0005_auto_20210611_1358
0006_remove_tableauserver_allow_domain_username_override
0007_tableauvisualization_upstream_id
0008_tableauvisualization_title
0009_remove_tableauserver_domain_username
0010_delete_reportssidebarordering
0011_tableauconnectedapp
0012_tableaugroup_tableauuser
0013_tableau_various_20221205
0014_querystringhash
0015_tableauserver_allowed_tableau_groups
0016_alter_tableauuser_role
0017_alter_tableauuser_tableau_user_id
0018_alter_tableauuser_role
0019_tableauvisualization_location_safe
0020_tableauserver_get_reports_using_role
saved_reports
0001_initial
0002_scheduledreportlog
scheduling
0001_initial
0002_add__custom_content__is_test
0003_add_custom_metadata
0004_timedschedule_start_offset
0005_timedschedule_start_day_of_week
0006_add_broadcast_recipients
0007_add_schedule_ui_type
0008_timedschedule_event_type
0009_randomtimedevent
0010_casepropertytimedevent
0011_add_broadcast_deleted_flag
0012_add_schedule_deleted_flag
0013_advanced_survey_options
0014_remove_is_test
0015_rename_schedule_length_to_repeat_every
0016_location_type_filter
0017_update_ui_type
0018_minutes_to_wait
0019_add_use_utc_as_default_timezone
0020_migratedreminder
0021_add_user_data_filter
0022_add_stop_date_case_property_name
0023_add_remaining_content_models
0024_app_id
0025_schedule_and_broadcast_deleted_on
0026_add_model_fcm_notification_content
0027_emailcontent_html_message
0028_alertschedule_use_user_case_for_filter_and_more
scheduling_partitioned
0001_initial
0002_case_schedule_instances
0003_add_last_reset_case_property_value
0004_case_schedule_instance_unique_together
0005_timed_schedule_instance_schedule_revision
0006_unique_indexes
0007_index_cleanup
0008_track_attempts
sessions
0001_initial
sites
0001_initial
0002_alter_domain_unique
sms
0001_initial
0002_add_selfregistrationinvitation
0003_add_backend_models
0004_add_sqlivrbackend_sqlkookoobackend
0005_remove_mobilebackend_unique_constraint
0006_add_migrationstatus
0007_check_for_backend_migration
0008_add_backend_mapping_unique_constraint
0009_check_for_domain_default_backend_migration
0010_update_sqlmobilebackend_couch_id
0011_alter_inbound_api_key
0012_add_lastreadmessage_expectedcallback
0013_check_for_log_migration
0014_add_queuedsms
0015_rename_phonenumber_to_phoneblacklist
0016_add_phonenumber
0017_update_phoneblacklist
0018_check_for_phone_number_migration
0019_add_new_registration_invitation_fields
0020_remove_selfregistrationinvitation_odk_url
0021_add_keyword
0022_keyword_last_modified
0023_check_for_keyword_migration
0024_add_is_two_way
0025_add_custom_metadata
0026_add_messagingsubevent_case_id_index
0027_ivorycoastmtnbackend
0028_messagingevent_source
0029_daily_outbound_sms_limit_reached
0030_karixbackend
0031_airteltclbackend
0032_couch_id_blank
0033_starfishbackend
0034_auto_20191007_0756_noop
0036_index_cleanup
0037_app_id
0038_sqlturnwhatsappbackend
0039_trumpia_gateway
0040_remove_karix_backend
0041_email
0042_infobip_pinpoint_backends
0043_auto_20200622_1243
0044_opt_keywords
0045_auto_20200902_0938
0046_keywords_linked_domain_fields
0046_delete_selfregistrationinvitation
0047_merge_20200918_1641
0048_delete_sqlicdsbackend
0049_auto_enable_turnio_ff
0050_sms_email_date_modified
0051_reset_modified_on
0052_messagingsubevent_date_last_activity
0053_alter_messagingsubevent_date_last_activity
0054_messagingsubevent_domain
0055_messagingsubevent_index_domain_date_id
0056_backfill_sms_event_date
0057_fcm_content_type_messaging_events
0058_email_html_body
0059_remove_unicel_backend
smsbillables
0001_initial
0002_bootstrap
0003_update_twilio_rates_outgoing
0004_bootstrap_smsgh_rates
0005_update_http_backend_criteria
0006_remove_smsbillable_api_response
0007_smsbillable_multipart_count
0008__multipart_count__non_nullable
0009_smsbillable_direct_gateway_fee
0010_gateway_fee_amount_null
0011_date_to_datetime
0012_remove_max_length
0013_auto_20160826_1531
0014_bootstrap_apposit_rates
0015_bootstrap_icds_rates
0016_smsgatewayfeecriteria_is_active
0017_deactivate_grapevine_instance_fee_criteria
0018_index__date_sent
0019_deactivate_hardcoded_twilio_gateway_fees
0020_update_sislog_fees
0021_infobip_gateway_fee_amount_null
0022_pinpoint_gateway_fee_amount_null
smsforms
0001_initial
0002_add_state_tracking_fields
0003_make_fields_not_null