Skip to content

Commit

Permalink
add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Borcsik committed Oct 9, 2024
1 parent 57ee738 commit 37547f6
Show file tree
Hide file tree
Showing 2 changed files with 21 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: 0484_productintent
posthog: 0485_team_session_recording_url_trigger_config
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
@@ -0,0 +1,20 @@
# Generated by Django 4.2.15 on 2024-10-09 09:32

import django.contrib.postgres.fields
from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("posthog", "0484_productintent"),
]

operations = [
migrations.AddField(
model_name="team",
name="session_recording_url_trigger_config",
field=django.contrib.postgres.fields.ArrayField(
base_field=models.JSONField(blank=True, null=True), blank=True, default=list, size=None
),
),
]

0 comments on commit 37547f6

Please sign in to comment.