| 1234567891011121314151617181920212223 |
- # Generated by Django 5.0.7 on 2024-08-09 14:29
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('config', '0002_config_config_conf_indice_39d8cc_idx_and_more'),
- ]
- operations = [
- migrations.AddField(
- model_name='config',
- name='nota',
- field=models.CharField(max_length=256, null=True),
- ),
- migrations.AlterField(
- model_name='config',
- name='valore',
- field=models.CharField(max_length=128, null=True),
- ),
- ]
|