Skip to content

Commit 12941ea

Browse files
Envio Contro Detail
1 parent 7ca43b8 commit 12941ea

File tree

148 files changed

+2643
-6021
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+2643
-6021
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Generated by Django 4.2.3 on 2024-04-09 12:45
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("baseapp_auth", "0003_superuserupdatelog"),
9+
]
10+
11+
operations = [
12+
migrations.AlterModelOptions(
13+
name="superuserupdatelog",
14+
options={"ordering": ["id"]},
15+
),
16+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Generated by Django 4.2.3 on 2024-04-09 18:00
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("baseapp_auth", "0004_alter_superuserupdatelog_options"),
9+
]
10+
11+
operations = [
12+
migrations.AlterModelOptions(
13+
name="superuserupdatelog",
14+
options={},
15+
),
16+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Generated by Django 4.2.3 on 2024-04-09 18:57
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("baseapp_auth", "0005_alter_superuserupdatelog_options"),
9+
]
10+
11+
operations = [
12+
migrations.AlterModelOptions(
13+
name="superuserupdatelog",
14+
options={"ordering": ["id"]},
15+
),
16+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Generated by Django 4.2.3 on 2024-04-09 18:59
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("baseapp_auth", "0006_alter_superuserupdatelog_options"),
9+
]
10+
11+
operations = [
12+
migrations.AlterModelOptions(
13+
name="superuserupdatelog",
14+
options={"ordering": ["-created"]},
15+
),
16+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Generated by Django 4.2.3 on 2024-04-09 19:21
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("baseapp_auth", "0007_alter_superuserupdatelog_options"),
9+
]
10+
11+
operations = [
12+
migrations.AlterModelOptions(
13+
name="superuserupdatelog",
14+
options={"ordering": ["created"]},
15+
),
16+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Generated by Django 4.2.3 on 2024-04-09 19:40
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("baseapp_auth", "0008_alter_superuserupdatelog_options"),
9+
]
10+
11+
operations = [
12+
migrations.AlterModelOptions(
13+
name="superuserupdatelog",
14+
options={},
15+
),
16+
]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Generated by Django 4.2.3 on 2024-04-09 19:53
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("baseapp_auth", "0009_alter_superuserupdatelog_options"),
9+
]
10+
11+
operations = [
12+
migrations.AlterModelOptions(
13+
name="superuserupdatelog",
14+
options={"ordering": ["-created"]},
15+
),
16+
]

baseapp-auth/baseapp_auth/models.py

+1
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ class Meta:
6363
abstract = True
6464
verbose_name = _("user")
6565
verbose_name_plural = _("users")
66+
ordering = ['id']
6667
permissions = [
6768
("view_all_users", _("can view all users")),
6869
("view_user_email", _("can view user's email field")),

baseapp-comments/README.md

-185
This file was deleted.

baseapp-comments/baseapp_comments/admin.py

-27
This file was deleted.

baseapp-comments/baseapp_comments/apps.py

-11
This file was deleted.

baseapp-comments/baseapp_comments/graphql/__init__.py

-1
This file was deleted.

baseapp-comments/baseapp_comments/graphql/filters.py

-28
This file was deleted.

0 commit comments

Comments
 (0)