This repository has been archived on 2025-04-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GestionaleITSPy/GestionaleITS/gestionale/migrations/0003_ticket_closing_date.py
2024-10-09 21:10:49 +02:00

19 lines
390 B
Python

# Generated by Django 4.2.16 on 2024-10-02 19:42
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('gestionale', '0002_ticket'),
]
operations = [
migrations.AddField(
model_name='ticket',
name='closing_date',
field=models.DateField(blank=True, null=True),
),
]