Skip to content

Commit

Permalink
added missing migrations (only verbose name changed)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbonf committed Oct 7, 2024
1 parent 213f897 commit e144c37
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.11 on 2024-10-07 13:37

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("experiments", "0015_timeslot_end_after_start"),
]

operations = [
migrations.AlterField(
model_name="experiment",
name="recruitment_target",
field=models.PositiveIntegerField(default=0, verbose_name="experiment:attribute:recruitment_target"),
),
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Generated by Django 4.2.11 on 2024-10-07 13:37

import cdh.core.fields.encrypted_fields
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("signups", "0004_signup_save_longer"),
]

operations = [
migrations.AlterField(
model_name="signup",
name="created",
field=models.DateTimeField(auto_now_add=True, verbose_name="participant:attribute:created"),
),
migrations.AlterField(
model_name="signup",
name="name",
field=cdh.core.fields.encrypted_fields.EncryptedCharField(verbose_name="participant:attribute:name"),
),
]

0 comments on commit e144c37

Please sign in to comment.