Skip to content

Commit 7e19dcc

Browse files
committed
rebase migration
1 parent 67e3195 commit 7e19dcc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

migrations_lockfile.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ social_auth: 0002_default_auto_field
2727

2828
tempest: 0002_make_message_type_nullable
2929

30-
uptime: 0040_uptime_backfill_detector_conditions
30+
uptime: 0041_uptime_backfill_detector_grouphash
3131

3232
workflow_engine: 0059_fix_high_priority_condition_triggers

src/sentry/uptime/migrations/0040_uptime_backfill_detector_grouphash.py renamed to src/sentry/uptime/migrations/0041_uptime_backfill_detector_grouphash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class Migration(CheckedMigration):
8989
is_post_deployment = True
9090

9191
dependencies = [
92-
("uptime", "0039_uptime_drop_project_subscription_uptime_status_db"),
92+
("uptime", "0040_uptime_backfill_detector_conditions"),
9393
("workflow_engine", "0055_datasource_define_indexes"),
9494
]
9595

tests/sentry/uptime/migrations/test_0040_uptime_backfill_detector_grouphash.py renamed to tests/sentry/uptime/migrations/test_0041_uptime_backfill_detector_grouphash.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
@pytest.mark.skip(reason="Causes problems in pipeline")
1818
class TestUptimeBackfillDetectorGrouphash(TestMigrations, UptimeTestCaseMixin):
1919
app = "uptime"
20-
migrate_from = "0039_uptime_drop_project_subscription_uptime_status_db"
21-
migrate_to = "0040_uptime_backfill_detector_grouphash"
20+
migrate_from = "0040_uptime_backfill_detector_conditions"
21+
migrate_to = "0041_uptime_backfill_detector_grouphash"
2222

2323
def setup_before_migration(self, apps):
2424
self.proj_sub_no_hash = self.create_project_uptime_subscription(project=self.project)

0 commit comments

Comments
 (0)