-
-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into mjr/sms-usage-tile
- Loading branch information
Showing
211 changed files
with
1,442 additions
and
1,894 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
corehq/apps/cleanup/migrations/0017_delete_oauth_integrations_models.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('cleanup', '0016_add_deletedsqldoc'), | ||
] | ||
|
||
operations = [ | ||
migrations.RunSQL(""" | ||
DROP TABLE IF EXISTS "oauth_integrations_googleapitoken" CASCADE; | ||
DROP TABLE IF EXISTS "oauth_integrations_livegooglesheetrefreshstatus" CASCADE; | ||
DROP TABLE IF EXISTS "oauth_integrations_livegooglesheetschedule" CASCADE; | ||
"""), | ||
] | ||
|
||
|
||
""" | ||
Dropped entities can be checked with the following query: | ||
select pg_describe_object(classid, objid, objsubid) | ||
from pg_depend | ||
where refobjid in ( | ||
'oauth_integrations_googleapitoken'::regclass, | ||
'oauth_integrations_livegooglesheetrefreshstatus'::regclass, | ||
'oauth_integrations_livegooglesheetschedule'::regclass | ||
); | ||
Example output (from staging, the same as a local dev setup): | ||
type oauth_integrations_livegooglesheetschedule | ||
type oauth_integrations_livegooglesheetrefreshstatus | ||
type oauth_integrations_googleapitoken | ||
toast table pg_toast.pg_toast_2980995 | ||
toast table pg_toast.pg_toast_2980982 | ||
toast table pg_toast.pg_toast_2892669 | ||
sequence oauth_integrations_livegooglesheetschedule_id_seq | ||
sequence oauth_integrations_livegooglesheetrefreshstatus_id_seq | ||
sequence oauth_integrations_googleapitoken_id_seq | ||
index oauth_integrations_livegoo_schedule_id_064aa4f4 | ||
index oauth_integrations_livegoo_export_config_id_200127ab | ||
index oauth_integrations_liveg_export_config_id_200127ab_like | ||
index oauth_integrations_googleapitoken_user_id_9d01255f | ||
default value for column id of table oauth_integrations_livegooglesheetschedule | ||
default value for column id of table oauth_integrations_livegooglesheetrefreshstatus | ||
default value for column id of table oauth_integrations_googleapitoken | ||
constraint oauth_integrations_livegooglesheetschedule_pkey on table oauth_integrations_livegooglesheetschedule | ||
constraint oauth_integrations_livegooglesheetrefreshstatus_pkey on table oauth_integrations_livegooglesheetrefreshstatus | ||
constraint oauth_integrations_l_schedule_id_064aa4f4_fk_oauth_int on table oauth_integrations_livegooglesheetrefreshstatus | ||
constraint oauth_integrations_googleapitoken_pkey on table oauth_integrations_googleapitoken | ||
constraint oauth_integrations_g_user_id_9d01255f_fk_auth_user on table oauth_integrations_googleapitoken | ||
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Generated by Django 4.2.16 on 2024-11-25 15:32 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('domain', '0014_appreleasemodesetting'), | ||
] | ||
|
||
operations = [ | ||
migrations.DeleteModel( | ||
name='ProjectLimit', | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
corehq/apps/domain/templates/domain/admin/bootstrap3/calendar_fixture.html
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.