mirror of
https://github.com/ae-utbm/sith.git
synced 2025-09-13 11:35:44 +00:00
change MonthField from CharField to DateField
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Generated by Django 5.2 on 2025-06-14 14:35
|
||||
# Generated by Django 5.2.3 on 2025-09-09 10:24
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
@@ -25,13 +25,11 @@ class Migration(migrations.Migration):
|
||||
verbose_name="ID",
|
||||
),
|
||||
),
|
||||
("is_validated", models.BooleanField(verbose_name="is validated")),
|
||||
(
|
||||
"month",
|
||||
counter.models.MonthField(
|
||||
max_length=7, verbose_name="invoice date"
|
||||
),
|
||||
"is_validated",
|
||||
models.BooleanField(default=False, verbose_name="is validated"),
|
||||
),
|
||||
("month", counter.models.MonthField(verbose_name="invoice date")),
|
||||
(
|
||||
"club",
|
||||
models.ForeignKey(
|
||||
|
Reference in New Issue
Block a user