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.
30 lines
763 B
Python
30 lines
763 B
Python
# Generated by Django 4.2.8 on 2026-02-22 10:11
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("api", "0002_add_report_model"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name="DocumentCounter",
|
|
fields=[
|
|
(
|
|
"id",
|
|
models.BigAutoField(
|
|
auto_created=True,
|
|
primary_key=True,
|
|
serialize=False,
|
|
verbose_name="ID",
|
|
),
|
|
),
|
|
("year", models.IntegerField(unique=True)),
|
|
("last_number", models.IntegerField(default=0)),
|
|
],
|
|
),
|
|
]
|