| 1234567891011121314151617181920212223 |
- # Generated by Django 5.0.7 on 2024-08-04 05:48
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('documento', '0008_alter_documento_utente'),
- ]
- operations = [
- migrations.AddField(
- model_name='documento',
- name='descrizione',
- field=models.CharField(default='', max_length=128),
- ),
- migrations.AlterField(
- model_name='documento',
- name='crc',
- field=models.CharField(default='', max_length=256),
- ),
- ]
|