Skip to content

Commit 455cca0

Browse files
committed
some missing old migration?
1 parent 9ecdd54 commit 455cca0

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Generated by Django 5.1.15 on 2025-12-05 06:52
2+
3+
import django.core.validators
4+
from django.db import migrations, models
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
("modeemintternet", "0039_feedback_validation_alter_membershipfee_year"),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name="membershipfee",
16+
name="year",
17+
field=models.PositiveIntegerField(
18+
primary_key=True,
19+
serialize=False,
20+
unique=True,
21+
validators=[
22+
django.core.validators.MinValueValidator(1975),
23+
django.core.validators.MaxValueValidator(2026),
24+
],
25+
verbose_name="Vuosi",
26+
),
27+
),
28+
]

0 commit comments

Comments
 (0)