| 12345678910111213141516171819202122232425262728 |
- # Generated by Django 5.0.7 on 2024-08-11 09:30
- from django.db import migrations, models
- class Migration(migrations.Migration):
- initial = True
- dependencies = [
- ]
- operations = [
- migrations.CreateModel(
- name='Comunicazione',
- fields=[
- ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
- ('indice', models.CharField(max_length=32)),
- ('valore', models.CharField(max_length=128, null=True)),
- ('nota', models.CharField(max_length=256, null=True)),
- ],
- options={
- 'db_table': 'Comunicazione',
- 'ordering': ['indice'],
- 'managed': False,
- },
- ),
- ]
|