Skip to content

Commit

Permalink
added missing migrations (help text changed)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbonf committed Dec 19, 2024
1 parent 9cf55f1 commit 211983f
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Generated by Django 4.2.11 on 2024-12-19 11:05

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("experiments", "0023_alter_experiment_confirmation_email_and_more"),
]

operations = [
migrations.AlterField(
model_name="experiment",
name="duration",
field=models.IntegerField(
help_text="experiment:attribute:duration:help_text", verbose_name="experiment:attribute:duration"
),
),
migrations.AlterField(
model_name="experiment",
name="session_duration",
field=models.IntegerField(
help_text="experiment:attribute:session_duration:help_text",
verbose_name="experiment:attribute:session_duration",
),
),
]

0 comments on commit 211983f

Please sign in to comment.