Skip to content

Commit

Permalink
merge migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverb123 committed Jul 22, 2024
1 parent e659ac8 commit 61bd215
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 32 deletions.
2 changes: 1 addition & 1 deletion latest_migrations.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ contenttypes: 0002_remove_content_type_name
ee: 0016_rolemembership_organization_member
otp_static: 0002_throttling
otp_totp: 0002_auto_20190420_0723
posthog: 0449_alter_plugin_organization_alter_plugin_url
posthog: 0448_alter_plugin_organization_alter_plugin_plugin_type_and_more
sessions: 0001_initial
social_django: 0010_uid_db_index
two_factor: 0007_auto_20201201_1019
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Generated by Django 4.2.11 on 2024-07-12 08:26
# Generated by Django 4.2.14 on 2024-07-22 08:04

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):
dependencies = [
("posthog", "0448_alter_plugin_plugin_type"),
("posthog", "0447_alter_integration_kind"),
]

operations = [
Expand All @@ -21,6 +21,23 @@ class Migration(migrations.Migration):
to="posthog.organization",
),
),
migrations.AlterField(
model_name="plugin",
name="plugin_type",
field=models.CharField(
blank=True,
choices=[
("local", "local"),
("custom", "custom"),
("repository", "repository"),
("source", "source"),
("inline", "inline"),
],
default=None,
max_length=200,
null=True,
),
),
migrations.AlterField(
model_name="plugin",
name="url",
Expand Down
29 changes: 0 additions & 29 deletions posthog/migrations/0448_alter_plugin_plugin_type.py

This file was deleted.

0 comments on commit 61bd215

Please sign in to comment.