diff --git a/latest_migrations.manifest b/latest_migrations.manifest index 799bf0420f344..e0fb945f0e553 100644 --- a/latest_migrations.manifest +++ b/latest_migrations.manifest @@ -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 diff --git a/posthog/migrations/0210_drop_update_person_functions.py b/posthog/migrations/0210_drop_update_person_functions.py new file mode 100644 index 0000000000000..c56aa7391ddc1 --- /dev/null +++ b/posthog/migrations/0210_drop_update_person_functions.py @@ -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"), + ]