0001_initial.py 797 B

12345678910111213141516171819202122232425262728
  1. # Generated by Django 5.0.7 on 2024-08-11 09:30
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. initial = True
  5. dependencies = [
  6. ]
  7. operations = [
  8. migrations.CreateModel(
  9. name='Comunicazione',
  10. fields=[
  11. ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
  12. ('indice', models.CharField(max_length=32)),
  13. ('valore', models.CharField(max_length=128, null=True)),
  14. ('nota', models.CharField(max_length=256, null=True)),
  15. ],
  16. options={
  17. 'db_table': 'Comunicazione',
  18. 'ordering': ['indice'],
  19. 'managed': False,
  20. },
  21. ),
  22. ]