You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
934 B
Python
34 lines
934 B
Python
# Generated by Django 4.2.20 on 2025-10-12 19:16
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("finance", "0011_remove_statement_confirmed_and_submitted"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="StatementOnExcursionProxy",
|
|
fields=[],
|
|
options={
|
|
"verbose_name": "Statement",
|
|
"verbose_name_plural": "Statements",
|
|
"abstract": False,
|
|
"proxy": True,
|
|
"default_permissions": (
|
|
"add_global",
|
|
"change_global",
|
|
"view_global",
|
|
"delete_global",
|
|
"list_global",
|
|
"view",
|
|
),
|
|
"indexes": [],
|
|
"constraints": [],
|
|
},
|
|
bases=("finance.statement",),
|
|
),
|
|
]
|