|
| 1 | +# Generated by Django 5.1.1 on 2024-11-22 19:12 |
| 2 | + |
| 3 | +from django.db import migrations, models |
| 4 | + |
| 5 | +from sentry.new_migrations.migrations import CheckedMigration |
| 6 | +from sentry.new_migrations.monkey.fields import SafeRemoveField |
| 7 | +from sentry.new_migrations.monkey.state import DeletionAction |
| 8 | + |
| 9 | + |
| 10 | +class Migration(CheckedMigration): |
| 11 | + # This flag is used to mark that a migration shouldn't be automatically run in production. |
| 12 | + # This should only be used for operations where it's safe to run the migration after your |
| 13 | + # code has deployed. So this should not be used for most operations that alter the schema |
| 14 | + # of a table. |
| 15 | + # Here are some things that make sense to mark as post deployment: |
| 16 | + # - Large data migrations. Typically we want these to be run manually so that they can be |
| 17 | + # monitored and not block the deploy for a long period of time while they run. |
| 18 | + # - Adding indexes to large tables. Since this can take a long time, we'd generally prefer to |
| 19 | + # run this outside deployments so that we don't block them. Note that while adding an index |
| 20 | + # is a schema change, it's completely safe to run the operation after the code has deployed. |
| 21 | + # Once deployed, run these manually via: https://develop.sentry.dev/database-migrations/#migration-deployment |
| 22 | + |
| 23 | + is_post_deployment = False |
| 24 | + |
| 25 | + dependencies = [ |
| 26 | + ("sentry", "0793_remove_db_constraint_alert_rule_exclusion"), |
| 27 | + ] |
| 28 | + |
| 29 | + operations = [ |
| 30 | + SafeRemoveField( |
| 31 | + model_name="alertrule", |
| 32 | + name="excluded_projects", |
| 33 | + deletion_action=DeletionAction.MOVE_TO_PENDING, |
| 34 | + ), |
| 35 | + migrations.AlterField( |
| 36 | + model_name="alertrule", |
| 37 | + name="include_all_projects", |
| 38 | + field=models.BooleanField(default=False, null=True), |
| 39 | + ), |
| 40 | + SafeRemoveField( |
| 41 | + model_name="alertrule", |
| 42 | + name="include_all_projects", |
| 43 | + deletion_action=DeletionAction.MOVE_TO_PENDING, |
| 44 | + ), |
| 45 | + ] |
0 commit comments