Skip to content

Commit

Permalink
add migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
longhotsummer committed Feb 19, 2024
1 parent 795b2c3 commit ba4b9b3
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions peachjam/migrations/0119_matomo.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Generated by Django 3.2.20 on 2024-02-19 13:15

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("peachjam", "0118_auto_20240130_1221"),
]

operations = [
migrations.AddField(
model_name="peachjamsettings",
name="matomo_domain",
field=models.CharField(
blank=True,
help_text="Matomo domain (e.g. mysite.matomo.cloud)",
max_length=1024,
null=True,
verbose_name="matomo domain",
),
),
migrations.AddField(
model_name="peachjamsettings",
name="matomo_site_id",
field=models.CharField(
blank=True,
help_text="Matomo site ID (e.g. 2)",
max_length=10,
null=True,
verbose_name="matomo site ID",
),
),
]

0 comments on commit ba4b9b3

Please sign in to comment.