-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/0.3.67' into main
- Loading branch information
Showing
4 changed files
with
229 additions
and
5 deletions.
There are no files selected for viewing
223 changes: 223 additions & 0 deletions
223
..._manager/migrations/0035_alter_datadictionary_options_alter_dataquery_options_and_more.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,223 @@ | ||
# Generated by Django 4.2.7 on 2023-12-03 00:22 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("edc_data_manager", "0034_issue"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name="datadictionary", | ||
options={ | ||
"default_permissions": ("view", "export"), | ||
"verbose_name": "Data Dictionary Item", | ||
"verbose_name_plural": "Data Dictionary Items", | ||
}, | ||
), | ||
migrations.AlterModelOptions( | ||
name="dataquery", | ||
options={ | ||
"default_manager_name": "objects", | ||
"default_permissions": ( | ||
"add", | ||
"change", | ||
"delete", | ||
"view", | ||
"export", | ||
"import", | ||
), | ||
"verbose_name": "Data Query", | ||
"verbose_name_plural": "Data Queries", | ||
}, | ||
), | ||
migrations.AlterModelOptions( | ||
name="queryrule", | ||
options={ | ||
"default_manager_name": "objects", | ||
"default_permissions": ( | ||
"add", | ||
"change", | ||
"delete", | ||
"view", | ||
"export", | ||
"import", | ||
), | ||
"verbose_name": "Query Rule", | ||
"verbose_name_plural": "Query Rules", | ||
}, | ||
), | ||
migrations.AddField( | ||
model_name="datadictionary", | ||
name="locale_created", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale created", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="datadictionary", | ||
name="locale_modified", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale modified", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="dataquery", | ||
name="locale_created", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale created", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="dataquery", | ||
name="locale_modified", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale modified", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="edcpermissions", | ||
name="locale_created", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale created", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="edcpermissions", | ||
name="locale_modified", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale modified", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="historicaldatadictionary", | ||
name="locale_created", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale created", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="historicaldatadictionary", | ||
name="locale_modified", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale modified", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="historicaldataquery", | ||
name="locale_created", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale created", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="historicaldataquery", | ||
name="locale_modified", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale modified", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="historicalqueryrule", | ||
name="locale_created", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale created", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="historicalqueryrule", | ||
name="locale_modified", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale modified", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="queryrule", | ||
name="locale_created", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale created", | ||
), | ||
), | ||
migrations.AddField( | ||
model_name="queryrule", | ||
name="locale_modified", | ||
field=models.CharField( | ||
blank=True, | ||
help_text="Auto-updated by Modeladmin", | ||
max_length=10, | ||
null=True, | ||
verbose_name="Locale modified", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="datadictionary", | ||
name="prompt", | ||
field=models.CharField(max_length=500), | ||
), | ||
migrations.AlterField( | ||
model_name="historicaldatadictionary", | ||
name="prompt", | ||
field=models.CharField(max_length=500), | ||
), | ||
migrations.AddIndex( | ||
model_name="datadictionary", | ||
index=models.Index( | ||
fields=["model", "number", "prompt"], | ||
name="edc_data_ma_model_92b469_idx", | ||
), | ||
), | ||
] |
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
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
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