mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 12:30:15 +02:00
tidy up extra migrations
This commit is contained in:
parent
4829900975
commit
a3d9496a57
@ -44,6 +44,9 @@ class Migration(migrations.Migration):
|
|||||||
('hash', models.CharField(max_length=254, unique=True)),
|
('hash', models.CharField(max_length=254, unique=True)),
|
||||||
('creator', models.ForeignKey(on_delete=models.SET(allianceauth.framework.api.user.get_sentinel_user), to=settings.AUTH_USER_MODEL)),
|
('creator', models.ForeignKey(on_delete=models.SET(allianceauth.framework.api.user.get_sentinel_user), to=settings.AUTH_USER_MODEL)),
|
||||||
],
|
],
|
||||||
|
options={
|
||||||
|
'permissions': ()
|
||||||
|
},
|
||||||
),
|
),
|
||||||
migrations.CreateModel(
|
migrations.CreateModel(
|
||||||
name='Fat',
|
name='Fat',
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
# Generated by Django 5.1.6 on 2025-03-05 04:28
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('fleetactivitytracking', '0008_v5squash'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='fatlink',
|
|
||||||
options={'permissions': ()},
|
|
||||||
),
|
|
||||||
]
|
|
@ -40,6 +40,7 @@ class Migration(migrations.Migration):
|
|||||||
('viewed', models.BooleanField(db_index=True, default=False)),
|
('viewed', models.BooleanField(db_index=True, default=False)),
|
||||||
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
|
||||||
],
|
],
|
||||||
|
options={'permissions': ()},
|
||||||
),
|
),
|
||||||
migrations.RunPython(create_permissions, reverse)
|
migrations.RunPython(create_permissions, reverse)
|
||||||
]
|
]
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
# Generated by Django 5.1.6 on 2025-03-05 04:28
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('notifications', '0006_v5squash'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='notification',
|
|
||||||
options={'permissions': ()},
|
|
||||||
),
|
|
||||||
]
|
|
@ -26,6 +26,7 @@ class Migration(migrations.Migration):
|
|||||||
('username', models.CharField(blank=True, db_index=True, default='', help_text="user's username on Discord", max_length=32)),
|
('username', models.CharField(blank=True, db_index=True, default='', help_text="user's username on Discord", max_length=32)),
|
||||||
],
|
],
|
||||||
options={
|
options={
|
||||||
|
'default_permissions': (),
|
||||||
'permissions': (('access_discord', 'Can access the Discord service'),),
|
'permissions': (('access_discord', 'Can access the Discord service'),),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
# Generated by Django 5.1.6 on 2025-03-05 04:26
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('discord', '0004_v5squash'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='discorduser',
|
|
||||||
options={'default_permissions': (), 'permissions': (('access_discord', 'Can access the Discord service'),)},
|
|
||||||
),
|
|
||||||
]
|
|
@ -24,6 +24,7 @@ class Migration(migrations.Migration):
|
|||||||
('enabled', models.BooleanField()),
|
('enabled', models.BooleanField()),
|
||||||
],
|
],
|
||||||
options={
|
options={
|
||||||
|
'default_permissions': (),
|
||||||
'permissions': (('access_discourse', 'Can access the Discourse service'),),
|
'permissions': (('access_discourse', 'Can access the Discourse service'),),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
# Generated by Django 5.1.6 on 2025-03-05 04:26
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('discourse', '0003_v5squash'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='discourseuser',
|
|
||||||
options={'default_permissions': (), 'permissions': (('access_discourse', 'Can access the Discourse service'),)},
|
|
||||||
),
|
|
||||||
]
|
|
@ -25,6 +25,7 @@ class Migration(migrations.Migration):
|
|||||||
('id', models.CharField(max_length=254)),
|
('id', models.CharField(max_length=254)),
|
||||||
],
|
],
|
||||||
options={
|
options={
|
||||||
|
'default_permissions': (),
|
||||||
'permissions': (('access_ips4', 'Can access the IPS4 service'),),
|
'permissions': (('access_ips4', 'Can access the IPS4 service'),),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
# Generated by Django 5.1.6 on 2025-03-05 04:26
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('ips4', '0003_v5squash'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='ips4user',
|
|
||||||
options={'default_permissions': (), 'permissions': (('access_ips4', 'Can access the IPS4 service'),)},
|
|
||||||
),
|
|
||||||
]
|
|
@ -32,7 +32,10 @@ class Migration(migrations.Migration):
|
|||||||
('version', models.IntegerField(blank=True, editable=False, help_text='Client version. Major version in upper 16 bits, followed by 8 bits of minor version and 8 bits of patchlevel. Version 1.2.3 = 0x010203.', null=True, verbose_name='Mumble Version')),
|
('version', models.IntegerField(blank=True, editable=False, help_text='Client version. Major version in upper 16 bits, followed by 8 bits of minor version and 8 bits of patchlevel. Version 1.2.3 = 0x010203.', null=True, verbose_name='Mumble Version')),
|
||||||
],
|
],
|
||||||
options={
|
options={
|
||||||
'permissions': (('access_mumble', 'Can access the Mumble service'), ('view_connection_history', 'Can access the connection history of the Mumble service')),
|
'default_permissions': (),
|
||||||
|
'permissions': (
|
||||||
|
('access_mumble', 'Can access the Mumble service'),
|
||||||
|
('view_connection_history', 'Can access the connection history of the Mumble service')),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
# Generated by Django 5.1.6 on 2025-03-05 04:26
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('mumble', '0015_v5squash'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='mumbleuser',
|
|
||||||
options={'default_permissions': (), 'permissions': (('access_mumble', 'Can access the Mumble service'), ('view_connection_history', 'Can access the connection history of the Mumble service'))},
|
|
||||||
),
|
|
||||||
]
|
|
@ -38,6 +38,7 @@ class Migration(migrations.Migration):
|
|||||||
('username', models.CharField(max_length=254)),
|
('username', models.CharField(max_length=254)),
|
||||||
],
|
],
|
||||||
options={
|
options={
|
||||||
|
'default_permissions': (),
|
||||||
'permissions': (('access_openfire', 'Can access the Openfire service'),),
|
'permissions': (('access_openfire', 'Can access the Openfire service'),),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
# Generated by Django 5.1.6 on 2025-03-05 04:23
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('openfire', '0003_v5squash'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='openfireuser',
|
|
||||||
options={'default_permissions': (), 'permissions': (('access_openfire', 'Can access the Openfire service'),)},
|
|
||||||
),
|
|
||||||
]
|
|
@ -24,6 +24,7 @@ class Migration(migrations.Migration):
|
|||||||
('username', models.CharField(max_length=254)),
|
('username', models.CharField(max_length=254)),
|
||||||
],
|
],
|
||||||
options={
|
options={
|
||||||
|
'default_permissions': (),
|
||||||
'permissions': (('access_phpbb3', 'Can access the phpBB3 service'),),
|
'permissions': (('access_phpbb3', 'Can access the phpBB3 service'),),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
# Generated by Django 5.1.6 on 2025-03-05 04:26
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('phpbb3', '0003_v5squash'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='phpbb3user',
|
|
||||||
options={'default_permissions': (), 'permissions': (('access_phpbb3', 'Can access the phpBB3 service'),)},
|
|
||||||
),
|
|
||||||
]
|
|
@ -24,6 +24,7 @@ class Migration(migrations.Migration):
|
|||||||
('username', models.CharField(max_length=254)),
|
('username', models.CharField(max_length=254)),
|
||||||
],
|
],
|
||||||
options={
|
options={
|
||||||
|
'default_permissions': (),
|
||||||
'permissions': (('access_smf', 'Can access the SMF service'),),
|
'permissions': (('access_smf', 'Can access the SMF service'),),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
# Generated by Django 5.1.6 on 2025-03-05 04:26
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('smf', '0004_v5squash'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='smfuser',
|
|
||||||
options={'default_permissions': (), 'permissions': (('access_smf', 'Can access the SMF service'),)},
|
|
||||||
),
|
|
||||||
]
|
|
@ -58,6 +58,7 @@ class Migration(migrations.Migration):
|
|||||||
('perm_key', models.CharField(max_length=254)),
|
('perm_key', models.CharField(max_length=254)),
|
||||||
],
|
],
|
||||||
options={
|
options={
|
||||||
|
'default_permissions': (),
|
||||||
'permissions': (('access_teamspeak3', 'Can access the Teamspeak3 service'),),
|
'permissions': (('access_teamspeak3', 'Can access the Teamspeak3 service'),),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
# Generated by Django 5.1.6 on 2025-03-05 04:26
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('teamspeak3', '0006_v5squash'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='teamspeak3user',
|
|
||||||
options={'default_permissions': (), 'permissions': (('access_teamspeak3', 'Can access the Teamspeak3 service'),)},
|
|
||||||
),
|
|
||||||
]
|
|
@ -24,6 +24,7 @@ class Migration(migrations.Migration):
|
|||||||
('username', models.CharField(max_length=254)),
|
('username', models.CharField(max_length=254)),
|
||||||
],
|
],
|
||||||
options={
|
options={
|
||||||
|
'default_permissions': (),
|
||||||
'permissions': (('access_xenforo', 'Can access the XenForo service'),),
|
'permissions': (('access_xenforo', 'Can access the XenForo service'),),
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
# Generated by Django 5.1.6 on 2025-03-05 04:26
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('xenforo', '0003_v5squash'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='xenforouser',
|
|
||||||
options={'default_permissions': (), 'permissions': (('access_xenforo', 'Can access the XenForo service'),)},
|
|
||||||
),
|
|
||||||
]
|
|
Loading…
x
Reference in New Issue
Block a user