-
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.
- Loading branch information
Showing
4 changed files
with
257 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
edc_data_manager/migrations/0032_alter_datadictionary_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,38 @@ | ||
# Generated by Django 4.2.7 on 2023-12-05 19:47 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("edc_data_manager", "0031_alter_dataquery_visit_code_sequence_and_more"), | ||
] | ||
|
||
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", | ||
}, | ||
), | ||
] |
176 changes: 176 additions & 0 deletions
176
edc_data_manager/migrations/0033_datadictionary_locale_created_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,176 @@ | ||
# Generated by Django 4.2.7 on 2023-12-05 19:49 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("edc_data_manager", "0032_alter_datadictionary_options_and_more"), | ||
] | ||
|
||
operations = [ | ||
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), | ||
), | ||
] |
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,25 @@ | ||
# Generated by Django 4.2.7 on 2023-12-05 19:50 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("edc_data_manager", "0033_datadictionary_locale_created_and_more"), | ||
("edc_form_runners", "0002_alter_issue_options_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name="Issue", | ||
fields=[], | ||
options={ | ||
"verbose_name": "Form validation issue", | ||
"verbose_name_plural": "Form validation issues", | ||
"proxy": True, | ||
"indexes": [], | ||
"constraints": [], | ||
}, | ||
bases=("edc_form_runners.issue",), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
edc_data_manager/migrations/0035_datadictionary_edc_data_ma_model_92b469_idx.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 4.2.7 on 2023-12-05 20:02 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("edc_data_manager", "0034_issue"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddIndex( | ||
model_name="datadictionary", | ||
index=models.Index( | ||
fields=["model", "number", "prompt"], name="edc_data_ma_model_92b469_idx" | ||
), | ||
), | ||
] |