-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Richard Borcsik
committed
Oct 9, 2024
1 parent
57ee738
commit 37547f6
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
posthog/migrations/0485_team_session_recording_url_trigger_config.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
), | ||
), | ||
] |