-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[blank-consent-form] consent form can now be empty.
- Loading branch information
1 parent
bfb0eb6
commit 3166084
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
database/migrations/0107_alter_devicesettings_consent_form_text.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,18 @@ | ||
# Generated by Django 3.2.20 on 2023-10-25 15:39 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('database', '0106_researcher_most_recent_page'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='devicesettings', | ||
name='consent_form_text', | ||
field=models.TextField(blank=True, default='I have read and understood the information about the study and all of my questions about the study have been answered by the study researchers.'), | ||
), | ||
] |
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