Skip to content

Commit fd5c839

Browse files
committed
chore(feedback) remove field
1 parent 6c0bb3e commit fd5c839

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

migrations_lockfile.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ discover: 0003_discover_json_field
99

1010
explore: 0006_add_changed_reason_field_explore
1111

12-
feedback: 0005_feedback_fk_not_db_contstr
12+
feedback: 0006_feedback_remove_fk
1313

1414
flags: 0001_squashed_0004_add_flag_audit_log_provider_column
1515

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Generated by Django 5.2.1 on 2025-09-12 15:54
2+
3+
from django.db import migrations
4+
5+
from sentry.new_migrations.migrations import CheckedMigration
6+
7+
8+
class Migration(CheckedMigration):
9+
# This flag is used to mark that a migration shouldn't be automatically run in production.
10+
# This should only be used for operations where it's safe to run the migration after your
11+
# code has deployed. So this should not be used for most operations that alter the schema
12+
# of a table.
13+
# Here are some things that make sense to mark as post deployment:
14+
# - Large data migrations. Typically we want these to be run manually so that they can be
15+
# monitored and not block the deploy for a long period of time while they run.
16+
# - Adding indexes to large tables. Since this can take a long time, we'd generally prefer to
17+
# run this outside deployments so that we don't block them. Note that while adding an index
18+
# is a schema change, it's completely safe to run the operation after the code has deployed.
19+
# Once deployed, run these manually via: https://develop.sentry.dev/database-migrations/#migration-deployment
20+
21+
is_post_deployment = False
22+
23+
dependencies = [
24+
("feedback", "0005_feedback_fk_not_db_contstr"),
25+
]
26+
27+
operations = [
28+
migrations.RemoveField(
29+
model_name="feedback",
30+
name="environment",
31+
),
32+
]

src/sentry/feedback/models.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
from sentry.backup.scopes import RelocationScope
55
from sentry.db.models import BoundedBigIntegerField, Model, region_silo_model, sane_repr
66
from sentry.db.models.fields import UUIDField
7-
from sentry.db.models.fields.foreignkey import FlexibleForeignKey
87

98

109
@region_silo_model
@@ -18,7 +17,6 @@ class Feedback(Model):
1817
feedback_id = UUIDField(unique=True)
1918
date_added = models.DateTimeField(default=timezone.now)
2019
organization_id = BoundedBigIntegerField(db_index=True)
21-
environment = FlexibleForeignKey("sentry.Environment", null=True, db_constraint=False)
2220

2321
# This "data" field is the data coming from the Sentry event and includes things like contexts
2422
# As we develop the product more, we will add more specific columns and rely on this JSON field less and less

0 commit comments

Comments
 (0)