Skip to content

Commit 4db0463

Browse files
committed
Regenerate migration
1 parent 2006b0d commit 4db0463

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

migrations_lockfile.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ feedback: 0004_index_together
99
hybridcloud: 0016_add_control_cacheversion
1010
nodestore: 0002_nodestore_no_dictfield
1111
replays: 0004_index_together
12-
sentry: 0710_grouphistory_remove_actor_state
12+
sentry: 0711_backfill_group_attributes_to_self_hosted
1313
social_auth: 0002_default_auto_field

src/sentry/migrations/0709_backfill_group_attributes_to_self_hosted.py renamed to src/sentry/migrations/0711_backfill_group_attributes_to_self_hosted.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Generated by Django 5.0.3 on 2024-04-26 17:41
1+
# Generated by Django 5.0.4 on 2024-05-01 17:52
2+
23
from __future__ import annotations
34

45
import dataclasses
@@ -177,7 +178,7 @@ class Migration(CheckedMigration):
177178
is_post_deployment = True
178179

179180
dependencies = [
180-
("sentry", "0708_rule_remove_owner_state"),
181+
("sentry", "0710_grouphistory_remove_actor_state"),
181182
]
182183

183184
operations = [

tests/sentry/migrations/test_0709_backfill_group_attributes_to_self_hosted.py renamed to tests/sentry/migrations/test_0711_backfill_group_attributes_to_self_hosted.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def test(self):
4545

4646

4747
class TestBackfillGroupAttributesRetry(SnubaTestCase, TestMigrations):
48-
migrate_from = "0708_rule_remove_owner_state"
49-
migrate_to = "0709_backfill_group_attributes_to_self_hosted"
48+
migrate_from = "0710_grouphistory_remove_actor_state"
49+
migrate_to = "0711_backfill_group_attributes_to_self_hosted"
5050

5151
def setup_initial_state(self):
5252
self.group = self.create_group()

0 commit comments

Comments
 (0)