Skip to content

Commit

Permalink
Make a stupid migration because django is stupid
Browse files Browse the repository at this point in the history
  • Loading branch information
Gilbert09 committed Jun 5, 2024
1 parent 527d568 commit ace3f75
Show file tree
Hide file tree
Showing 2 changed files with 27 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 @@ -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: 0420_alert
posthog: 0421_alter_externaldatasource_source_type
sessions: 0001_initial
social_django: 0010_uid_db_index
two_factor: 0007_auto_20201201_1019
26 changes: 26 additions & 0 deletions posthog/migrations/0421_alter_externaldatasource_source_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Generated by Django 4.2.11 on 2024-06-05 17:12

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("posthog", "0420_alert"),
]

operations = [
migrations.AlterField(
model_name="externaldatasource",
name="source_type",
field=models.CharField(
choices=[
("Stripe", "Stripe"),
("Hubspot", "Hubspot"),
("Postgres", "Postgres"),
("Zendesk", "Zendesk"),
("Snowflake", "Snowflake"),
],
max_length=128,
),
),
]

0 comments on commit ace3f75

Please sign in to comment.