Skip to content
Snippets Groups Projects
Verified Commit 7978400e authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Merge branch 'master' into 5-add-comments

parents 39964454 69019966
No related branches found
No related tags found
No related merge requests found
# Generated by Django 3.2.5 on 2021-08-11 18:09
import django.contrib.sites.managers
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('abi', '0007_remove_additionalprofilefield_field_name_field'),
]
operations = [
migrations.AlterModelOptions(
name='profile',
options={'permissions': (('use_profile', 'Can fill their profile'),), 'verbose_name': 'Personal profile', 'verbose_name_plural': 'Personal profiles'},
),
migrations.AlterModelOptions(
name='ranking',
options={'permissions': (('rank_persons', 'Can rank persons'),), 'verbose_name': 'Ranking', 'verbose_name_plural': 'Rankings'},
),
migrations.AlterModelManagers(
name='abiperson',
managers=[
],
),
migrations.AlterModelManagers(
name='ranking',
managers=[
('objects', django.contrib.sites.managers.CurrentSiteManager()),
],
),
]
...@@ -6,7 +6,7 @@ from django.db import migrations, models ...@@ -6,7 +6,7 @@ from django.db import migrations, models
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('abi', '0008_auto_20210811_2009'), ('abi', '0007_remove_additionalprofilefield_field_name_field'),
] ]
operations = [ operations = [
......
...@@ -7,7 +7,7 @@ import django.db.models.deletion ...@@ -7,7 +7,7 @@ import django.db.models.deletion
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('abi', '0008_auto_20210729_1841'), ('abi', '0011_select_multiple_persons'),
] ]
operations = [ operations = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment