Skip to content

Commit

Permalink
drop unused functions if instances have them (#8565)
Browse files Browse the repository at this point in the history
  • Loading branch information
yakkomajuri authored Feb 16, 2022
1 parent 297fafc commit 360e493
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion latest_migrations.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ axes: 0006_remove_accesslog_trusted
contenttypes: 0002_remove_content_type_name
database: 0002_auto_20190129_2304
ee: 0008_null_definition_descriptions
posthog: 0209_plugin_logs_disabled
posthog: 0210_drop_update_person_functions
rest_hooks: 0002_swappable_hook_model
sessions: 0001_initial
social_django: 0010_uid_db_index
14 changes: 14 additions & 0 deletions posthog/migrations/0210_drop_update_person_functions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Generated by Django 3.2.5 on 2022-02-11 15:43

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("posthog", "0209_plugin_logs_disabled"),
]

operations = [
migrations.RunSQL("DROP FUNCTION IF EXISTS update_person_props, should_update_person_props"),
]

0 comments on commit 360e493

Please sign in to comment.