-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #155 from robertatakenaka/tk_154
Remove o campo `action` de Educação e garante que cada diretório tenh…
- Loading branch information
Showing
8 changed files
with
146 additions
and
6 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
education_directory/migrations/0003_alter_educationdirectory_action.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,21 @@ | ||
# Generated by Django 3.2.12 on 2023-02-15 18:43 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import education_directory.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('usefulmodels', '0011_auto_20221108_2356'), | ||
('education_directory', '0002_alter_educationdirectory_record_status'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='educationdirectory', | ||
name='action', | ||
field=models.ForeignKey(blank=True, default=education_directory.models.get_default_action, null=True, on_delete=django.db.models.deletion.SET_NULL, to='usefulmodels.action', verbose_name='Ação'), | ||
), | ||
] |
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
21 changes: 21 additions & 0 deletions
21
event_directory/migrations/0004_alter_eventdirectory_action.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,21 @@ | ||
# Generated by Django 3.2.12 on 2023-02-15 18:43 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import event_directory.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('usefulmodels', '0011_auto_20221108_2356'), | ||
('event_directory', '0003_alter_eventdirectory_organization'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='eventdirectory', | ||
name='action', | ||
field=models.ForeignKey(blank=True, default=event_directory.models.get_default_action, null=True, on_delete=django.db.models.deletion.SET_NULL, to='usefulmodels.action', verbose_name='Ação'), | ||
), | ||
] |
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
21 changes: 21 additions & 0 deletions
21
infrastructure_directory/migrations/0003_alter_infrastructuredirectory_action.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,21 @@ | ||
# Generated by Django 3.2.12 on 2023-02-15 18:43 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import infrastructure_directory.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('usefulmodels', '0011_auto_20221108_2356'), | ||
('infrastructure_directory', '0002_alter_infrastructuredirectory_record_status'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='infrastructuredirectory', | ||
name='action', | ||
field=models.ForeignKey(blank=True, default=infrastructure_directory.models.get_default_action, null=True, on_delete=django.db.models.deletion.SET_NULL, to='usefulmodels.action', verbose_name='Ação'), | ||
), | ||
] |
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
21 changes: 21 additions & 0 deletions
21
policy_directory/migrations/0004_alter_policydirectory_action.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,21 @@ | ||
# Generated by Django 3.2.12 on 2023-02-15 18:43 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import policy_directory.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('usefulmodels', '0011_auto_20221108_2356'), | ||
('policy_directory', '0003_alter_policydirectory_date'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='policydirectory', | ||
name='action', | ||
field=models.ForeignKey(blank=True, default=policy_directory.models.get_default_action, null=True, on_delete=django.db.models.deletion.SET_NULL, to='usefulmodels.action', verbose_name='Ação'), | ||
), | ||
] |
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